Skip to content

Commit

Permalink
Update replicated edgelist test after using new API
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-rliu committed Jun 4, 2024
1 parent 826b86b commit 4a44f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/tests/utils/test_replication_mg.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ def test_enable_batch_edgelist_replication(graph_file, directed, dask_client):
G = utils.generate_cugraph_graph_from_file(graph_file, directed)
G.enable_batch()
df = G.edgelist.edgelist_df
for worker in G.batch_edgelists:
replicated_df = G.batch_edgelists[worker].result()
for i in range(G.batch_edgelists.npartitions):
replicated_df = G.batch_edgelists.get_partition(i).compute()
assert_frame_equal(df, replicated_df)


Expand Down

0 comments on commit 4a44f2f

Please sign in to comment.