From 637f1d1c059b8fd20899571865edee84a326c64b Mon Sep 17 00:00:00 2001 From: Grigory Smolkin Date: Sun, 25 Apr 2021 00:26:40 +0300 Subject: [PATCH] tests: fix archive.ArchiveTest.test_archive_pg_receivexlog_partial_handling --- tests/archive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/archive.py b/tests/archive.py index 70a86393..7f5c7587 100644 --- a/tests/archive.py +++ b/tests/archive.py @@ -2090,11 +2090,11 @@ class ArchiveTest(ProbackupTest, unittest.TestCase): result = node.safe_psql( "postgres", - "select sum(id) from t_heap") + "select sum(id) from t_heap").decode('utf-8').rstrip() result_new = node_restored.safe_psql( "postgres", - "select sum(id) from t_heap") + "select sum(id) from t_heap").decode('utf-8').rstrip() self.assertEqual(result, result_new)