Skip to content

Commit c156922

Browse files
author
Release Manager
committed
Trac #32783: random doctest failure in src/sage/graphs/generic_graph.py
Part of #32544: {{{ sage -t --random-seed=51685253128277730790124890611460558667 src/sage/graphs/generic_graph.py ********************************************************************** File "src/sage/graphs/generic_graph.py", line 577, in sage.graphs.generic_graph.GenericGraph.__eq__ Failed example: G == H # most often true Expected: True Got: False ********************************************************************** 1 item had failures: 1 of 30 in sage.graphs.generic_graph.GenericGraph.__eq__ [3566 tests, 1 failure, 18.95 s] ---------------------------------------------------------------------- sage -t --random-seed=51685253128277730790124890611460558667 src/sage/graphs/generic_graph.py # 1 doctest failed ---------------------------------------------------------------------- }}} URL: https://trac.sagemath.org/32783 Reported by: lorenz Ticket author(s): David Coudert Reviewer(s): Jonathan Kliem
2 parents 9d06a54 + e10245f commit c156922

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=ab6592f2216c48049bbbcfb3a42c3e157f44d917
3-
md5=fc3a50e0f47802e55969eade44648af4
4-
cksum=3704729867
2+
sha1=0edfa595190951da647cc126a077a4d6ebf52303
3+
md5=fdf671af139030782f330d86ce245ce2
4+
cksum=4211145352
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c5a87834e7e2939b878a5134cd240e6c712bd573
1+
900e94dacaed54e59485588bbc21749db729643c

src/sage/graphs/generic_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def __eq__(self, other):
574574
True
575575
sage: G = graphs.RandomGNP(8, .9999)
576576
sage: H = graphs.CompleteGraph(8)
577-
sage: G == H # most often true
577+
sage: G == H # random - most often true
578578
True
579579
sage: G = Graph({0: [1, 2, 3, 4, 5, 6, 7]} )
580580
sage: H = Graph({1: [0], 2: [0], 3: [0], 4: [0], 5: [0], 6: [0], 7: [0]} )

0 commit comments

Comments
 (0)