@@ -1989,7 +1989,7 @@ def testAssertNoLogsYieldsNone(self):
19891989 pass
19901990 self .assertIsNone (value )
19911991
1992- def testAssertStartswith (self ):
1992+ def testAssertStartsWith (self ):
19931993 self .assertStartsWith ('ababahalamaha' , 'ababa' )
19941994 self .assertStartsWith ('ababahalamaha' , ('x' , 'ababa' , 'y' ))
19951995 self .assertStartsWith (UserString ('ababahalamaha' ), 'ababa' )
@@ -2034,7 +2034,7 @@ def testAssertStartswith(self):
20342034 self .assertStartsWith ('ababahalamaha' , 'amaha' , msg = 'abracadabra' )
20352035 self .assertIn ('ababahalamaha' , str (cm .exception ))
20362036
2037- def testAssertNotStartswith (self ):
2037+ def testAssertNotStartsWith (self ):
20382038 self .assertNotStartsWith ('ababahalamaha' , 'amaha' )
20392039 self .assertNotStartsWith ('ababahalamaha' , ('x' , 'amaha' , 'y' ))
20402040 self .assertNotStartsWith (UserString ('ababahalamaha' ), 'amaha' )
@@ -2079,7 +2079,7 @@ def testAssertNotStartswith(self):
20792079 self .assertNotStartsWith ('ababahalamaha' , 'ababa' , msg = 'abracadabra' )
20802080 self .assertIn ('ababahalamaha' , str (cm .exception ))
20812081
2082- def testAssertEndswith (self ):
2082+ def testAssertEndsWith (self ):
20832083 self .assertEndsWith ('ababahalamaha' , 'amaha' )
20842084 self .assertEndsWith ('ababahalamaha' , ('x' , 'amaha' , 'y' ))
20852085 self .assertEndsWith (UserString ('ababahalamaha' ), 'amaha' )
@@ -2124,7 +2124,7 @@ def testAssertEndswith(self):
21242124 self .assertEndsWith ('ababahalamaha' , 'ababa' , msg = 'abracadabra' )
21252125 self .assertIn ('ababahalamaha' , str (cm .exception ))
21262126
2127- def testAssertNotEndswith (self ):
2127+ def testAssertNotEndsWith (self ):
21282128 self .assertNotEndsWith ('ababahalamaha' , 'ababa' )
21292129 self .assertNotEndsWith ('ababahalamaha' , ('x' , 'ababa' , 'y' ))
21302130 self .assertNotEndsWith (UserString ('ababahalamaha' ), 'ababa' )
0 commit comments