We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8254b49 commit c1690dfCopy full SHA for c1690df
graphdatascience/tests/integration/test_graph_ops.py
@@ -746,6 +746,13 @@ def test_graph_relationships_stream_without_arrow(gds_without_arrow: GraphDataSc
746
"MATCH (n)-[r]->(m) RETURN id(n) AS src_id, id(m) AS trg_id, type(r) AS rel_type"
747
)
748
749
+ # Pandas 2.2.0 deprecated an API used by the following assertion (in the underlying impl of pandas)
750
+ warnings.filterwarnings(
751
+ "ignore",
752
+ category=DeprecationWarning,
753
+ message=r"Passing a BlockManager to DataFrame is deprecated",
754
+ )
755
+
756
assert result.shape[0] == expected.shape[0]
757
for _, row in expected.iterrows():
758
assert (result == np.array(row)).all(1).any()
0 commit comments