From 46b1f5592ed904932d793610afaf14a04c653ef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Chapoton?= Date: Fri, 11 May 2018 17:17:16 +0200 Subject: [PATCH] trac 25333 plantri doctest (features) --- src/sage/features/graph_generators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/features/graph_generators.py b/src/sage/features/graph_generators.py index de343d33c0b..4d4059a0ac1 100644 --- a/src/sage/features/graph_generators.py +++ b/src/sage/features/graph_generators.py @@ -47,7 +47,7 @@ def is_functional(self): return FeatureTestResult(self, False, reason="Call `{command}` failed with exit code {e.returncode}".format(command=" ".join(command), e=e)) - expected = "1 triangulation written" + expected = "1 triangulations written" if lines.find(expected) == -1: return FeatureTestResult(self, False, reason = "Call `{command}` did not produce output which contains `{expected}`".format(command=" ".join(command), expected=expected))