Skip to content

Commit 7a79c5c

Browse files
Update tests/test_decomposition.py
Co-authored-by: Szabolcs Horvát <szhorvat@gmail.com>
1 parent 06fca73 commit 7a79c5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_decomposition.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -575,9 +575,9 @@ def testVoronoi(self):
575575

576576
# Test 3: Three disconnected triangles
577577
g = Graph(9)
578-
g.add_edges([(0, 1), (1, 2), (2, 0)]) # Triangle 1
579-
g.add_edges([(3, 4), (4, 5), (5, 3)]) # Triangle 2
580-
g.add_edges([(6, 7), (7, 8), (8, 6)]) # Triangle 3
578+
g.add_edges([(0, 1), (1, 2), (2, 0), # Triangle 1
579+
(3, 4), (4, 5), (5, 3), # Triangle 2
580+
(6, 7), (7, 8), (8, 6)]) # Triangle 3
581581

582582
cl = g.community_voronoi()
583583

0 commit comments

Comments
 (0)