Skip to content

Commit

Permalink
undo change
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Nov 20, 2023
1 parent 806460e commit 1180ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/tests/link_analysis/test_hits.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def input_expected_output(input_combo):
# in the dictionary. This allows separate Nx-only tests that may have run
# previously on the same input_combo to save their results for re-use
# elsewhere.
dataset_path = input_combo["graph_file"].get_path()
Gnx = utils.generate_nx_graph_from_file(dataset_path, directed=True)
if "nxResults" not in input_combo:
dataset_path = input_combo["graph_file"].get_path()
Gnx = utils.generate_nx_graph_from_file(dataset_path, directed=True)
nxResults = nx.hits(
Gnx, input_combo["max_iter"], input_combo["tol"], normalized=True
)
Expand Down

0 comments on commit 1180ee1

Please sign in to comment.