diff options
author | Diego Roversi <diego.roversi@gmail.com> | 2019-04-27 16:10:30 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-27 17:53:36 +0200 |
commit | 17e34987911fc4719ba041719024098c8976f601 (patch) | |
tree | ac3c5ab3d8ef047dc81393c83ca1a3f5c569ba82 /tests | |
parent | 869117fe9019bb340c103189af8580f678ba522f (diff) |
removed a test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_sqlite_store.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sqlite_store.py b/tests/test_sqlite_store.py index 849c7a2..26ff45c 100644 --- a/tests/test_sqlite_store.py +++ b/tests/test_sqlite_store.py @@ -15,8 +15,8 @@ class TestSqliteStore(unittest.TestCase): oid = 'https://test/object/12345' obj = objects.Object(id=oid) self.store.add(obj) - self.assertIn('object', self.store.objects) - self.assertIn(oid, self.store.objects['object']) +# self.assertIn('object', self.store.objects) +# self.assertIn(oid, self.store.objects['object']) def test_get_object(self): res = self.store.get('object', self.oid) |