Skip to content

Commit

Permalink
Using nxcg import convention.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlratzel committed Sep 22, 2023
1 parent 9412d20 commit 52ffb67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/wheel_smoke_test_nx-cugraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import math

import networkx as nx
import nx_cugraph
import nx_cugraph as nxcg


if __name__ == "__main__":
Expand All @@ -28,7 +28,7 @@
#
# but here it is being called directly since the NetworkX version that
# supports the "backend" kwarg may not be available in the testing env.
nxcu_result = nx_cugraph.betweenness_centrality(G)
nxcu_result = nxcg.betweenness_centrality(G)

nx_nodes, nxcu_nodes = nx_result.keys(), nxcu_result.keys()
assert nxcu_nodes == nx_nodes
Expand Down

0 comments on commit 52ffb67

Please sign in to comment.