@@ -1989,7 +1989,7 @@ def testAssertNoLogsYieldsNone(self):
1989
1989
pass
1990
1990
self .assertIsNone (value )
1991
1991
1992
- def testAssertStartswith (self ):
1992
+ def testAssertStartsWith (self ):
1993
1993
self .assertStartsWith ('ababahalamaha' , 'ababa' )
1994
1994
self .assertStartsWith ('ababahalamaha' , ('x' , 'ababa' , 'y' ))
1995
1995
self .assertStartsWith (UserString ('ababahalamaha' ), 'ababa' )
@@ -2034,7 +2034,7 @@ def testAssertStartswith(self):
2034
2034
self .assertStartsWith ('ababahalamaha' , 'amaha' , msg = 'abracadabra' )
2035
2035
self .assertIn ('ababahalamaha' , str (cm .exception ))
2036
2036
2037
- def testAssertNotStartswith (self ):
2037
+ def testAssertNotStartsWith (self ):
2038
2038
self .assertNotStartsWith ('ababahalamaha' , 'amaha' )
2039
2039
self .assertNotStartsWith ('ababahalamaha' , ('x' , 'amaha' , 'y' ))
2040
2040
self .assertNotStartsWith (UserString ('ababahalamaha' ), 'amaha' )
@@ -2079,7 +2079,7 @@ def testAssertNotStartswith(self):
2079
2079
self .assertNotStartsWith ('ababahalamaha' , 'ababa' , msg = 'abracadabra' )
2080
2080
self .assertIn ('ababahalamaha' , str (cm .exception ))
2081
2081
2082
- def testAssertEndswith (self ):
2082
+ def testAssertEndsWith (self ):
2083
2083
self .assertEndsWith ('ababahalamaha' , 'amaha' )
2084
2084
self .assertEndsWith ('ababahalamaha' , ('x' , 'amaha' , 'y' ))
2085
2085
self .assertEndsWith (UserString ('ababahalamaha' ), 'amaha' )
@@ -2124,7 +2124,7 @@ def testAssertEndswith(self):
2124
2124
self .assertEndsWith ('ababahalamaha' , 'ababa' , msg = 'abracadabra' )
2125
2125
self .assertIn ('ababahalamaha' , str (cm .exception ))
2126
2126
2127
- def testAssertNotEndswith (self ):
2127
+ def testAssertNotEndsWith (self ):
2128
2128
self .assertNotEndsWith ('ababahalamaha' , 'ababa' )
2129
2129
self .assertNotEndsWith ('ababahalamaha' , ('x' , 'ababa' , 'y' ))
2130
2130
self .assertNotEndsWith (UserString ('ababahalamaha' ), 'ababa' )
0 commit comments