Skip to content
Snippets Groups Projects
Commit be14625e authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

MAINT: Remove obsolete todos

parent 688f8428
No related branches found
No related tags found
2 merge requests!160STY: styling,!151New class to track treated Records during sync
Pipeline #47405 passed
...@@ -978,8 +978,6 @@ def test_treated_record_lookup(): ...@@ -978,8 +978,6 @@ def test_treated_record_lookup():
assert trlu._id_look_up[exist.id] is exist assert trlu._id_look_up[exist.id] is exist
# can be accessed via get_existing # can be accessed via get_existing
assert trlu.get_existing(db.Record(id=1)) is exist assert trlu.get_existing(db.Record(id=1)) is exist
# assert trlu.is_existing(db.Record(id=1)) # TODO remove?
# assert not trlu.is_missing(db.Record(id=1)) # TODO remove?
miss = db.Record() miss = db.Record()
# exception when identifiable is missing # exception when identifiable is missing
...@@ -993,8 +991,6 @@ def test_treated_record_lookup(): ...@@ -993,8 +991,6 @@ def test_treated_record_lookup():
assert trlu._identifiable_look_up[ident.get_representation()] is miss assert trlu._identifiable_look_up[ident.get_representation()] is miss
# can be accessed via get_missing # can be accessed via get_missing
assert trlu.get_missing(db.Record(), Identifiable(name='a')) is miss assert trlu.get_missing(db.Record(), Identifiable(name='a')) is miss
# assert not trlu.is_existing(db.Record()) # TODO remove?
# assert trlu.is_missing(db.Record()) # TODO remove?
fi = db.File(path='a', id=2) fi = db.File(path='a', id=2)
trlu.add(fi) trlu.add(fi)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment