Skip to content

Commit 8f1ff1b

Browse files
Fix lookup (#376)
1 parent eda31ca commit 8f1ff1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terminusdb_client/tests/integration_tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ def test_happy_path(docker_url):
4646
# test adding something
4747
client.query(WOQLQuery().add_quad("a", "rdf:type", "sys:Class", "schema"))
4848
first_commit = client._get_current_commit()
49-
first_obj = client.query(WOQLQuery().star())
49+
first_obj = client.query(WOQLQuery().star(graph="schema"))
5050
assert first_commit != init_commit
5151
assert len(client.get_commit_history()) == 1
5252
client.query(WOQLQuery().add_quad("b", "rdf:type", "sys:Class", "schema"))
5353
commit_history = client.get_commit_history()
54-
more_obj = client.query(WOQLQuery().star())
54+
more_obj = client.query(WOQLQuery().star(graph="schema"))
5555
assert first_obj != more_obj
5656
assert client._get_target_commit(1) == first_commit
5757
assert len(client.get_commit_history()) == 2

0 commit comments

Comments
 (0)