Skip to content

Commit 5a75ea0

Browse files
committed
Fix debug.arrow test
We return a wide table instead of key-value pairs
1 parent 0c7d40e commit 5a75ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/tests/integration/test_system_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_sysInfo(gds: GraphDataScience) -> None:
3333
def test_debug_arrow(gds: GraphDataScience) -> None:
3434
result = gds.debug.arrow()
3535

36-
assert "listenAddress" in (list(result["key"]))
36+
assert "listenAddress" in (result.keys())
3737

3838

3939
@pytest.mark.enterprise

0 commit comments

Comments
 (0)