aboutsummaryrefslogtreecommitdiff
path: root/tests/test_sqlite_store.py
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-07-20 17:30:42 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-07-20 17:31:14 +0200
commit4852ba0f09ececeb3f542801bedf981217ba6a4c (patch)
tree539a184b0130f9444d30e99387aa7d419010a01a /tests/test_sqlite_store.py
parent1396f2ef54b71d4344e28329a4d874a73e2e8e12 (diff)
Refactor Object to be a dataclass
Diffstat (limited to 'tests/test_sqlite_store.py')
-rw-r--r--tests/test_sqlite_store.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sqlite_store.py b/tests/test_sqlite_store.py
index ea3fef6..70a4b17 100644
--- a/tests/test_sqlite_store.py
+++ b/tests/test_sqlite_store.py
@@ -9,12 +9,12 @@ class TestSqliteStore(unittest.TestCase):
self.store = sqlite.Store(file=':memory:')
self.store.createdb()
self.oid = 'https://test/object/12345'
- self.obj = objects.Object(id=self.oid)
+ self.obj = objects.Object(ap_id=self.oid)
self.store.add(self.obj)
def test_add_object(self):
oid = 'https://test/object/12345'
- obj = objects.Object(id=oid)
+ obj = objects.Object(ap_id=oid)
self.store.add(obj)
# self.assertIn('object', self.store.objects)
# self.assertIn(oid, self.store.objects['object'])