Skip to content
Snippets Groups Projects
Commit b9ed0763 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Fix broken assert command

parent 0f24930a
No related branches found
No related tags found
1 merge request!76Resolve "Remove nose.tools dependency"
Pipeline #49511 failed
This commit is part of merge request !76. Comments created here will be created in the context of that merge request.
......@@ -353,12 +353,12 @@ def test_query_with_subquery_referenced_by():
unique=True).name,
"TestRecord")
assert_true(
assert_equal(
db.execute_query(
"FIND TestPerson WHICH IS REFERENCED BY TestPigExperiment AS A TestConductor",
unique=True).name,
"TestJohnDoe")
assert_true(
assert_equal(
db.execute_query(
"FIND TestPerson WHICH IS REFERENCED BY TestPigExperiment",
unique=True).name,
......
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