Skip to content
Snippets Groups Projects
Verified Commit efbb2d71 authored by Erwan Rouchet's avatar Erwan Rouchet
Browse files

Fix test

parent e950e0e8
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ CREATE TABLE entity_link (
PRIMARY KEY (id),
FOREIGN KEY (parent_id) REFERENCES entity (id),
FOREIGN KEY (child_id) REFERENCES entity (id),
FOREIGN KEY (role_id) REFERENCES role (id)
FOREIGN KEY (role_id) REFERENCES entity_role (id)
);
CREATE TABLE metadata (
......
......@@ -52,7 +52,7 @@ class TestExport(FixtureTestCase):
entity=entity1,
offset=1,
length=1,
version=version,
worker_version=version,
)
db_path = export_corpus(self.corpus.id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment