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

Commit

Permalink
Fix for doctest failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Oct 15, 2021
1 parent c872d69 commit 08248a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/features/join_feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _is_present(self):
sage: from sage.features.latte import Latte
sage: Latte()._is_present() # optional - latte_int
FeatureTestResult('LattE', True)
FeatureTestResult('latte_int', True)
"""
for f in self._features:
test = f._is_present()
Expand All @@ -73,7 +73,7 @@ def is_functional(self):
sage: from sage.features.latte import Latte
sage: Latte().is_functional() # optional - latte_int
FeatureTestResult('LattE', True)
FeatureTestResult('latte_int', True)
"""
for f in self._features:
test = f.is_functional()
Expand Down

0 comments on commit 08248a1

Please sign in to comment.