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 @@ -1348,7 +1348,7 @@ def test_select_invalid_option_too_big(select_app):
13481348 # Mock out the input call so we don't actually wait for a user's response on stdin
13491349 m = mock .MagicMock (name = 'input' )
13501350 # If side_effect is an iterable then each call to the mock will return the next value from the iterable.
1351- m .side_effect = ['3' , '1' ] # First pass and invalid selection, then pass a valid one
1351+ m .side_effect = ['3' , '1' ] # First pass an invalid selection, then pass a valid one
13521352 builtins .input = m
13531353
13541354 food = 'fish'
@@ -1372,7 +1372,7 @@ def test_select_invalid_option_too_small(select_app):
13721372 # Mock out the input call so we don't actually wait for a user's response on stdin
13731373 m = mock .MagicMock (name = 'input' )
13741374 # If side_effect is an iterable then each call to the mock will return the next value from the iterable.
1375- m .side_effect = ['0' , '1' ] # First pass and invalid selection, then pass a valid one
1375+ m .side_effect = ['0' , '1' ] # First pass an invalid selection, then pass a valid one
13761376 builtins .input = m
13771377
13781378 food = 'fish'
You can’t perform that action at this time.
0 commit comments