Skip to content

Commit

Permalink
fix : minor edit in graph_gen_test pydot section
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jan 8, 2024
1 parent 2f76a92 commit 181fa40
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions test/graph_gen_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1701,8 +1701,6 @@
37
>>> file=open('testfile.gv','r')
>>> g1 = pydot.graph_from_dot_data(file.read())
>>> type(g1[0])
<class 'pydot.Dot'>
>>> g1[0].get_type()
'digraph'
>>> len(g1[0].get_edge_list())
Expand All @@ -1712,8 +1710,6 @@
37
>>> file=open('testfile2.gv','r')
>>> g2 = pydot.graph_from_dot_data(file.read())
>>> type(g2[0])
<class 'pydot.Dot'>
>>> g2[0].get_type()
'graph'
>>> len(g2[0].get_edge_list())
Expand All @@ -1723,8 +1719,6 @@
40
>>> file=open('testfile3.gv','r')
>>> g3 = pydot.graph_from_dot_data(file.read())
>>> type(g3[0])
<class 'pydot.Dot'>
>>> g3[0].get_type()
'graph'
>>> len(g3[0].get_edge_list())
Expand All @@ -1734,8 +1728,6 @@
42
>>> file=open('testfile4.gv','r')
>>> g4 = pydot.graph_from_dot_data(file.read())
>>> type(g4[0])
<class 'pydot.Dot'>
>>> g4[0].get_type()
'graph'
>>> len(g4[0].get_edge_list())
Expand Down

0 comments on commit 181fa40

Please sign in to comment.