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))