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:
parent
a4ddadd0c3
commit
637f1d1c05
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user