diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-04 15:32:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-04 15:33:13 +0200 |
commit | e75781247b085311d75ba380ead2b523b8dba097 (patch) | |
tree | d0dd22cc3b923ca8a2270c121f5b94bdb19dd4c1 /archaeological_operations | |
parent | 21fe72642e7b7e9847a178794a1cd9f771f23c0a (diff) | |
download | Ishtar-e75781247b085311d75ba380ead2b523b8dba097.tar.bz2 Ishtar-e75781247b085311d75ba380ead2b523b8dba097.zip |
Serializers: manage context records - uuid for context records
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 82f30855c..9a1313424 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -790,7 +790,7 @@ class SerializationTest(GenericSerializationTest, TestCase): ) self.assertEqual(len(site_json), 1) rel_json = json.loads( - res[('operations', 'archaeological_operations__RecordRelation')] + res[('operations', 'archaeological_operations__RecordRelations')] ) self.assertEqual(len(rel_json), 0) @@ -809,7 +809,7 @@ class SerializationTest(GenericSerializationTest, TestCase): ) self.assertEqual(len(site_json), 0) rel_json = json.loads( - res[('operations', 'archaeological_operations__RecordRelation')] + res[('operations', 'archaeological_operations__RecordRelations')] ) self.assertEqual(len(rel_json), 0) |