1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-24 11:46:31 +02:00

tests: fix archive.ArchiveTest.test_archive_pg_receivexlog_partial_handling

This commit is contained in:
Grigory Smolkin 2021-04-25 00:26:40 +03:00
parent a4ddadd0c3
commit 637f1d1c05

View File

@ -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)