mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-05 10:45:51 +00:00
Fix tests
This commit is contained in:
parent
ffeaf25471
commit
8ca5446e02
1 changed files with 2 additions and 1 deletions
|
|
@ -551,7 +551,8 @@ class SyncMachine(RuleBasedStateMachine):
|
|||
assert items_a == old_items_a or not a.read_only
|
||||
assert items_b == old_items_b or not b.read_only
|
||||
|
||||
assert set(a.items) | set(b.items) == set(status)
|
||||
assert set(a.items) | set(b.items) == set(status) or \
|
||||
partial_sync == 'ignore'
|
||||
|
||||
|
||||
TestSyncMachine = SyncMachine.TestCase
|
||||
|
|
|
|||
Loading…
Reference in a new issue