didnt -> didn't

This commit is contained in:
Semen Zhydenko 2019-08-01 15:10:39 +02:00
parent 2de145f372
commit d19fe3c410
2 changed files with 2 additions and 2 deletions

View File

@ -435,7 +435,7 @@ class TestFunctional:
def test_b(self): def test_b(self):
assert True assert True
class TestC(object): class TestC(object):
# this one didnt get marked # this one didn't get marked
def test_d(self): def test_d(self):
assert True assert True
""" """

View File

@ -253,7 +253,7 @@ def test_apiwrapper_problem_issue260(testdir):
def test_setup_teardown_linking_issue265(testdir): def test_setup_teardown_linking_issue265(testdir):
# we accidentally didnt integrate nose setupstate with normal setupstate # we accidentally didn't integrate nose setupstate with normal setupstate
# this test ensures that won't happen again # this test ensures that won't happen again
testdir.makepyfile( testdir.makepyfile(
''' '''