Skip to content

Commit

Permalink
fix print statement in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
aestrivex committed Feb 24, 2016
1 parent e1da26b commit 720b785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/modularity_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_modularity_louvain_dir_low_modularity():
def test_modularity_dir():
x = load_directed_sample()
_, q = bct.modularity_dir(x)
print q, .32742787
print(q, .32742787)
assert np.allclose(q, .32742787)


Expand Down

0 comments on commit 720b785

Please sign in to comment.