From 52ffb67aeacd1d2dfa5f8060b4d12764e6fb94d2 Mon Sep 17 00:00:00 2001 From: Rick Ratzel Date: Thu, 21 Sep 2023 21:47:22 -0500 Subject: [PATCH] Using nxcg import convention. --- ci/wheel_smoke_test_nx-cugraph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/wheel_smoke_test_nx-cugraph.py b/ci/wheel_smoke_test_nx-cugraph.py index 4f924001b82..10d26e3aac7 100644 --- a/ci/wheel_smoke_test_nx-cugraph.py +++ b/ci/wheel_smoke_test_nx-cugraph.py @@ -14,7 +14,7 @@ import math import networkx as nx -import nx_cugraph +import nx_cugraph as nxcg if __name__ == "__main__": @@ -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