Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumsden committed Apr 24, 2024
1 parent cea150a commit a400ad0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions hatchet/tests/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ def __init__(self):
self.z = "hello"

bad_field_test_dict = list(mock_graph_literal)
bad_field_test_dict[0]["children"][0]["children"][0]["metrics"]["list"] = (
DummyType()
)
bad_field_test_dict[0]["children"][0]["children"][0]["metrics"][
"list"
] = DummyType()
gf = GraphFrame.from_literal(bad_field_test_dict)
path = [{"name": "foo"}, {"name": "bar"}, {"list": DummyType()}]
query = ObjectQuery(path)
Expand Down Expand Up @@ -1028,9 +1028,9 @@ def __init__(self):
self.z = "hello"

bad_field_test_dict = list(mock_graph_literal)
bad_field_test_dict[0]["children"][0]["children"][0]["metrics"]["list"] = (
DummyType()
)
bad_field_test_dict[0]["children"][0]["children"][0]["metrics"][
"list"
] = DummyType()
gf = GraphFrame.from_literal(bad_field_test_dict)
path = """MATCH (p)->(q)->(r)
WHERE p."name" = "foo" AND q."name" = "bar" AND p."list" = DummyType()
Expand Down

0 comments on commit a400ad0

Please sign in to comment.