summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Gallo <aamsgallo@gmail.com>2018-10-08 23:46:00 +0200
committerAlejandro Gallo <aamsgallo@gmail.com>2018-10-08 23:46:00 +0200
commit0ea431247782bdacf9eb4d35887dda60f6f39de8 (patch)
tree4324afc4cf3847cd56832603f37f4e46cd40ce24
parent7414634a11c61268a98edd26a4de2d65cb44a28b (diff)
Fix test export
-rw-r--r--tests/commands/test_export.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/commands/test_export.py b/tests/commands/test_export.py
index d071520a..a7727377 100644
--- a/tests/commands/test_export.py
+++ b/tests/commands/test_export.py
@@ -149,9 +149,6 @@ class TestCli(tests.cli.TestCli):
])
self.assertTrue(result.exit_code == 0)
self.assertTrue(
- re.match(
- r'No files found for doc in ',
- result.output_bytes.decode()
- )
+ result.output_bytes.decode() == ''
)
self.assertTrue(not os.path.exists(outfile))