Skip to content

Commit 723d889

Browse files
committed
Fix newline issue in test
1 parent 34791aa commit 723d889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_export(self):
128128
self.assertIn(
129129
"Exported snapshot existing-snapshot-1 to "
130130
"existing-snapshot-1_20200101-000000.dump",
131-
result.output.replace("\n", " "),
131+
result.output.replace("\n", ""),
132132
)
133133

134134
def test_export_not_found(self):

0 commit comments

Comments
 (0)