Skip to content

Commit 259ca0d

Browse files
committed
Fixed typos in comments
1 parent 9a68457 commit 259ca0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_cmd2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)