Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Oct 14, 2024
1 parent d1014fc commit 507deeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/tests/structure/test_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ def test_create_undirected_graph_from_asymmetric_adj_list():
# Ifan undirected graph is created with 'symmetrize' set to False, the
# edgelist provided by the user must be symmetric.
G.from_cudf_adjlist(offsets, indices, None, symmetrize=False)

G = cugraph.Graph(directed=False)
G.from_cudf_adjlist(offsets, indices, None, symmetrize=True)

# FIXME: Once 'decompress_to_edgelist' is exposed to the
# FIXME: Once 'decompress_to_edgelist' is exposed to the
# python API, ensure that the derived edgelist is symmetric
# if symmetrize = True.

Expand Down

0 comments on commit 507deeb

Please sign in to comment.