From 635c88da8c6df73b9fdf94d95c0c4fa2fc7397b7 Mon Sep 17 00:00:00 2001 From: Nathann Cohen Date: Mon, 24 Mar 2014 10:51:24 +0100 Subject: [PATCH] trac #13917: Broken doctest --- src/sage/graphs/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/graphs/graph.py b/src/sage/graphs/graph.py index 19c021c9ec5..3f3eab3c30e 100644 --- a/src/sage/graphs/graph.py +++ b/src/sage/graphs/graph.py @@ -4911,7 +4911,7 @@ def cliques_maximal(self, algorithm = "native"): [3, 8], [4, 9], [5, 7], [5, 8], [6, 8], [6, 9], [7, 9]] sage: C = Graph('DJ{') sage: C.cliques_maximal() - [[0, 4], [4, 1, 2, 3]] + [[0, 4], [1, 2, 3, 4]] Comparing the two implementations::