Skip to content

Commit b64bdae

Browse files
committed
Fix test
1 parent 9f15ffe commit b64bdae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphdatascience/tests/unit/test_graph_ops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def test_graph_relationshipProperty_stream(runner: CollectingQueryRunner, gds: G
305305
assert runner.last_params() == {
306306
"graph_name": "g",
307307
"properties": "dummyProp",
308-
"entities": "dummyType",
308+
"entities": ["dummyType"],
309309
"config": {"concurrency": 2},
310310
}
311311

@@ -390,7 +390,7 @@ def test_graph_relationshipProperties_stream(runner: CollectingQueryRunner, gds:
390390
assert runner.last_params() == {
391391
"graph_name": "g",
392392
"properties": ["dummyProp"],
393-
"entities": "dummyType",
393+
"entities": ["dummyType"],
394394
"config": {"concurrency": 2},
395395
}
396396

0 commit comments

Comments
 (0)