Unverified Commit cebdc2a8 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci][tests][python] remove assertion for `filename` attribute that is no...

[ci][tests][python] remove assertion for `filename` attribute that is no longer true with new version of graphviz (#4778)
parent aafedd8a
...@@ -172,7 +172,6 @@ def test_create_tree_digraph(breast_cancer_split): ...@@ -172,7 +172,6 @@ def test_create_tree_digraph(breast_cancer_split):
graph.render(view=False) graph.render(view=False)
assert isinstance(graph, graphviz.Digraph) assert isinstance(graph, graphviz.Digraph)
assert graph.name == 'Tree4' assert graph.name == 'Tree4'
assert graph.filename == 'Tree4.gv'
assert len(graph.node_attr) == 1 assert len(graph.node_attr) == 1
assert graph.node_attr['color'] == 'red' assert graph.node_attr['color'] == 'red'
assert len(graph.graph_attr) == 0 assert len(graph.graph_attr) == 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment