We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f6b15c commit 1aede49Copy full SHA for 1aede49
nx_cugraph/tests/test_bc.py
@@ -23,8 +23,9 @@ def test_bc():
23
assert pytest.approx(bc_nx) == bc_cg
24
25
26
-@pytest.mark.skipif(_nxver < (3, 5),
27
- reason="Test only supported for BC normalization used in NX 3.5+")
+@pytest.mark.skipif(
+ _nxver < (3, 5), reason="Test only supported for BC normalization used in NX 3.5+"
28
+)
29
def test_bc_rng():
30
G = nx.karate_club_graph()
31
bc_nx = nx.betweenness_centrality(G, k=4, seed=42)
0 commit comments