File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/Infrastrcture/TimeOptionsManager Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ def test_default_time_10_minutes(self):
1313 result = time_options_manager .get_time_string ()
1414 self .assertEqual (result , "10:00" )
1515
16- def test_indement_minutes_once_is_11_minutes (self ):
16+ def test_increment_minutes_once_is_11_minutes (self ):
1717 time_options_manager = TimeOptionsManager ()
1818 time_options_manager .increment_minutes ()
1919 result = time_options_manager .get_time_string ()
2020 self .assertEqual (result , "11:00" )
2121
22- def test_decriment_minutes_once_is_9_minutes (self ):
22+ def test_decrement_minutes_once_is_9_minutes (self ):
2323 time_options_manager = TimeOptionsManager ()
2424 time_options_manager .decrement_minutes ()
2525 result = time_options_manager .get_time_string ()
You can’t perform that action at this time.
0 commit comments