Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #22424: corrected doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Feb 27, 2017
1 parent f0af172 commit abbd053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/graphs/graph.py
Expand Up @@ -5168,9 +5168,9 @@ def to_directed(self, implementation='c_graph', data_structure=None,
:trac:`22424`::
sage: G1=graphs.Grid2RandomGNP(5,0.5)
sage: G1 = graphs.RandomGNP(5,0.5)
sage: gp1 = G1.graphplot(save_pos=True)
sage: G2=G1.to_directed()
sage: G2 = G1.to_directed()
sage: G2.delete_vertex(0)
sage: G2.add_vertex(5)
sage: gp2 = G2.graphplot()
Expand Down

0 comments on commit abbd053

Please sign in to comment.