File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ def test_load_tests_apply_scenarios(self):
204204 unittest .TestLoader (), [self .SampleTest ("test_nothing" )], None
205205 )
206206 result_tests = list (testtools .iterate_tests (suite ))
207- self .assertEquals (2 , len (result_tests ), result_tests )
207+ self .assertEqual (2 , len (result_tests ), result_tests )
208208
209209 def test_load_tests_apply_scenarios_old_style (self ):
210210 """Call load_tests in the way used by bzr."""
@@ -214,7 +214,7 @@ def test_load_tests_apply_scenarios_old_style(self):
214214 unittest .TestLoader (),
215215 )
216216 result_tests = list (testtools .iterate_tests (suite ))
217- self .assertEquals (2 , len (result_tests ), result_tests )
217+ self .assertEqual (2 , len (result_tests ), result_tests )
218218
219219
220220class TestMultiplyScenarios (testtools .TestCase ):
You can’t perform that action at this time.
0 commit comments