mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Debug output
This commit is contained in:
parent
6f4ff7aab1
commit
a524f8e971
1 changed files with 2 additions and 2 deletions
|
|
@ -310,7 +310,7 @@ def test_create_collections(subtest, collections):
|
||||||
['discover'],
|
['discover'],
|
||||||
input='y\n' * 2 * (len(collections) + 1)
|
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.
|
# 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
|
# 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(
|
result = runner.invoke(
|
||||||
['sync'] + ['foobar/' + x for x in collections]
|
['sync'] + ['foobar/' + x for x in collections]
|
||||||
)
|
)
|
||||||
assert not result.exception
|
assert not result.exception, result.output
|
||||||
|
|
||||||
|
|
||||||
def test_ident_conflict(tmpdir, runner):
|
def test_ident_conflict(tmpdir, runner):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue