8000 tests: fix archive.ArchiveTest.test_archive_pg_receivexlog_partial_ha… · postgrespro/pg_probackup@637f1d1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 637f1d1

Browse files
committed
tests: fix archive.ArchiveTest.test_archive_pg_receivexlog_partial_handling
1 parent a4ddadd commit 637f1d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/archive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2090,11 +2090,11 @@ def test_archive_pg_receivexlog_partial_handling(self):
20902090

20912091
result = node.safe_psql(
20922092
"postgres",
2093-
"select sum(id) from t_heap")
2093+
"select sum(id) from t_heap").decode('utf-8').rstrip()
20942094

20952095
result_new = node_restored.safe_psql(
20962096
"postgres",
2097-
"select sum(id) from t_heap")
2097+
"select sum(id) from t_heap").decode('utf-8').rstrip()
20982098

20992099
self.assertEqual(result, result_new)
21002100

0 commit comments

Comments
 (0)
0