Skip to content

Commit

Permalink
fix bug in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Meng Liu committed Dec 4, 2018
1 parent 7067e7f commit 9c37316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion localgraphclustering/tests/test_algs.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_GraphLocal_methods():
pos = np.array(list(nx.get_node_attributes(N,'pos').values()))
G = GraphLocal()
G = G.from_networkx(N)
drawing = G.draw(pos,edgealpha=0.01,nodealpha=0.5,groups=[range(50),range(50,100)],
drawing = G.draw(pos,edgealpha=0.01,nodealpha=0.5,
values=[random.uniform(0, 1) for i in range(200)])
drawing = G.draw_groups(pos,[range(50),range(50,100),range(100,150)],edgealpha=0.01,nodealpha=0.5)

Expand Down

0 comments on commit 9c37316

Please sign in to comment.