Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
uhbrar committed Oct 30, 2024
1 parent f8569c7 commit 877d76f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_query_exam.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_create_aux_graph():
eb1 = EdgeBinding(id = 'eb1', attributes=[])
eb2 = EdgeBinding(id = 'eb2', attributes=[])
analysis = Analysis(resource_id = "example.com", edge_bindings = {"qedge1":[eb1], "qedge2":[eb2]})
agid, aux_graph = create_aux_graph(analysis.to_dict())
agid, aux_graph = create_aux_graph(analysis.to_dict(), {})
assert len(agid) == 36
assert aux_graph["edges"] == ["eb1", "eb2"]
#Make sure that we can parse the aux graph
Expand Down

0 comments on commit 877d76f

Please sign in to comment.