Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
BradReesWork committed Oct 3, 2023
1 parent f74a71a commit 376b6a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph-pyg/cugraph_pyg/tests/test_cugraph_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ def test_renumber_edges(abc_graph):
# let 0, 1 be the start vertices, fanout = [2, 1, 2, 3]
mock_sampling_results = cudf.DataFrame(
{
"sources": cudf.Series([0, 0, 1, 2, 3, 3, 1, 3, 3, 3], dtype="int64"),
"destinations": cudf.Series([2, 3, 3, 8, 1, 7, 3, 1, 5, 7], dtype="int64"),
"major": cudf.Series([0, 0, 1, 2, 3, 3, 1, 3, 3, 3], dtype="int64"),
"minor": cudf.Series([2, 3, 3, 8, 1, 7, 3, 1, 5, 7], dtype="int64"),
"hop_id": cudf.Series([0, 0, 0, 1, 1, 1, 2, 3, 3, 3], dtype="int32"),
"edge_type": cudf.Series([0, 0, 0, 2, 1, 2, 0, 1, 2, 2], dtype="int32"),
}
Expand Down

0 comments on commit 376b6a2

Please sign in to comment.