Skip to content

Commit 6cdf5a2

Browse files
committed
Fixed test failure
1 parent 03e6be3 commit 6cdf5a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_unit_plot.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,14 @@ def test_two_connected_clusters(self):
7474
height=512,
7575
colors=data,
7676
output_file='network.html',
77-
notebook=False
7877
)
7978

8079
def test_empty_graph(self):
8180
empty_graph = nx.Graph()
8281
mapper_plot = MapperPlot(empty_graph, dim=2)
8382
mapper_plot.plot_matplotlib(colors=[])
8483
mapper_plot.plot_plotly(colors=[])
85-
mapper_plot.plot_pyvis(colors=[], notebook=False, output_file='tmp.html')
84+
mapper_plot.plot_pyvis(colors=[], output_file='tmp.html')
8685

8786
def test_two_connected_clusters_deprecated(self):
8887
data = [

0 commit comments

Comments
 (0)