Fix output of example test method.

This commit is contained in:
Ben Davies 2021-11-30 14:55:05 +11:00
parent fa240b0bb4
commit 86bcaad828
2 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1 @@
Correct minor typos in doc/en/example/special.rst.

View File

@ -43,7 +43,7 @@ will be called ahead of running any tests:
print("test_method1 called")
def test_method2(self):
print("test_method1 called")
print("test_method2 called")
class TestOther:
@ -77,7 +77,7 @@ If you run this without output capturing:
callme other called
SomeTest callme called
test_method1 called
.test_method1 called
.test_method2 called
.test other
.test_unit1 method called
.