Skip to content

Commit 4d11269

Browse files
author
Matthias Koeppe
committed
src/sage/matroids/dual_matroid.py: Restore 'indirect doctest'
1 parent 2fedc99 commit 4d11269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/matroids/dual_matroid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def __eq__(self, other):
461461
sage: M4 = CircuitClosuresMatroid(groundset='abcdefg',
462462
....: circuit_closures={3: ['abcdefg'], 2: ['beg', 'cdb', 'cfg',
463463
....: 'ace', 'fed', 'gad', 'fab']}).dual()
464-
sage: M1.dual() == M2
464+
sage: M1.dual() == M2 # indirect doctest
465465
False
466466
sage: M2 == M3
467467
False
@@ -493,7 +493,7 @@ def __ne__(self, other):
493493
sage: M4 = CircuitClosuresMatroid(groundset='abcdefg',
494494
....: circuit_closures={3: ['abcdefg'], 2: ['beg', 'cdb', 'cfg',
495495
....: 'ace', 'fed', 'gad', 'fab']}).dual()
496-
sage: M1.dual() != M2
496+
sage: M1.dual() != M2 # indirect doctest
497497
True
498498
sage: M2 != M3
499499
True

0 commit comments

Comments
 (0)