Skip to content

Commit 0107867

Browse files
FlorentinDadamnsch
andcommitted
Fix GDS intregation test for arrow
Co-authored-by: Adam Schill Collberg <adam.schill.collberg@protonmail.com>
1 parent 8ef8c93 commit 0107867

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

python-wrapper/tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def gds() -> Generator[Any, None, None]:
3939
auth=(dbms_connection_info.username, dbms_connection_info.password),
4040
aura_ds=True,
4141
database="neo4j",
42-
arrow=False,
4342
)
4443

4544
api.delete_instance(id)

python-wrapper/tests/gds_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def connect_to_plugin_gds(uri: str) -> GraphDataScience:
1111
if os.environ.get("NEO4J_USER"):
1212
NEO4J_AUTH = (os.environ.get("NEO4J_USER", "DUMMY"), os.environ.get("NEO4J_PASSWORD", "neo4j"))
1313

14-
return GraphDataScience(endpoint=uri, auth=NEO4J_AUTH, database="neo4j", arrow=False)
14+
return GraphDataScience(endpoint=uri, auth=NEO4J_AUTH, database="neo4j")
1515

1616

1717
def aura_api() -> AuraApi:

python-wrapper/tests/test_gds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_from_gds_integration(gds: Any) -> None:
1616
nodes = pd.DataFrame(
1717
{
1818
"nodeId": [0, 1, 2],
19-
"labels": ["A", "C", ["A", "B"]],
19+
"labels": [["A"], ["C"], ["A", "B"]],
2020
"score": [1337, 42, 3.14],
2121
"component": [1, 4, 2],
2222
}

0 commit comments

Comments
 (0)