cubicweb/dataimport/test/test_massive_store.py
changeset 11781 4ebd968f364c
parent 11780 307d96c0ab5a
child 11789 71df2811b422
--- a/cubicweb/dataimport/test/test_massive_store.py	Wed Sep 28 09:02:14 2016 +0200
+++ b/cubicweb/dataimport/test/test_massive_store.py	Fri Sep 30 17:34:59 2016 +0200
@@ -138,7 +138,7 @@
         with self.admin_access.repo_cnx() as cnx:
             store = MassiveObjectStore(cnx)
 
-            store._drop_constraints()
+            store._drop_metadata_constraints()
             indexes = all_indexes(cnx)
             self.assertIn('entities_pkey', indexes)
             self.assertNotIn(build_index_name('owned_by_relation', ['eid_from', 'eid_to'], 'key_'),
@@ -159,8 +159,8 @@
         with self.admin_access.repo_cnx() as cnx:
             metagen = stores.MetadataGenerator(cnx, meta_skipped=('owned_by',))
             store = MassiveObjectStore(cnx, metagen=metagen)
+            store._drop_metadata_constraints()
 
-            store._drop_constraints()
             indexes = all_indexes(cnx)
             self.assertIn(build_index_name('owned_by_relation', ['eid_from', 'eid_to'], 'key_'),
                           indexes)