Skip to content

Commit 26d8ca2

Browse files
committed
Updating tests
1 parent 45b1ccf commit 26d8ca2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def test_draw_graph(self):
290290
for pair in edges_list:
291291
G1.add_edge(pair[0], pair[1], weight=1, thickness=1)
292292

293-
self.assertTrue(draw_graph(G1, False, False))
293+
self.assertTrue(draw_graph(G1))
294294

295295
def test_draw_graph_unkown_node(self):
296296
G1 = nx.Graph()
@@ -301,7 +301,7 @@ def test_draw_graph_unkown_node(self):
301301
G1.add_edge(pair[0], pair[1], weight=1, thickness=1)
302302

303303
with self.assertWarns(Warning):
304-
draw_graph(G1, True, True)
304+
draw_graph(G1)
305305

306306

307307
class TestImportData(unittest.TestCase):

0 commit comments

Comments
 (0)