Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 637f1d1

Browse filesBrowse files
committed
tests: fix archive.ArchiveTest.test_archive_pg_receivexlog_partial_handling
1 parent a4ddadd commit 637f1d1
Copy full SHA for 637f1d1

File tree

1 file changed

+2
-2
lines changed
Filter options

1 file changed

+2
-2
lines changed

‎tests/archive.py

Copy file name to clipboardExpand all lines: tests/archive.py
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.