From a524f8e971ce4823cbe0657c9fd8a7e31ae3ec2b Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Tue, 27 Sep 2016 12:38:36 +0200 Subject: [PATCH] Debug output --- tests/cli/test_sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cli/test_sync.py b/tests/cli/test_sync.py index 0c823a6..67867f3 100644 --- a/tests/cli/test_sync.py +++ b/tests/cli/test_sync.py @@ -310,7 +310,7 @@ def test_create_collections(subtest, collections): ['discover'], input='y\n' * 2 * (len(collections) + 1) ) - assert not result.exception + assert not result.exception, result.output # Macs normally operate on the HFS+ file system which normalizes paths. # That is, if you save a file with accented é in it (u'\xe9') for @@ -331,7 +331,7 @@ def test_create_collections(subtest, collections): result = runner.invoke( ['sync'] + ['foobar/' + x for x in collections] ) - assert not result.exception + assert not result.exception, result.output def test_ident_conflict(tmpdir, runner):