Skip to content

Commit e700571

Browse files
committed
minor
1 parent fbfe610 commit e700571

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/makeotf_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_exit_known_option(arg):
9393
assert subprocess.call([TOOL, arg]) == 0
9494

9595

96-
@pytest.mark.parametrize('arg', ['j', 'bogus'])
96+
@pytest.mark.parametrize('arg', ['-j', '--bogus'])
9797
def test_exit_unknown_option(arg):
9898
assert subprocess.call([TOOL, arg]) == 1
9999

tests/makeotfexe_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_exit_known_option(arg):
5656
assert subprocess.call([TOOL, arg]) == 0
5757

5858

59-
@pytest.mark.parametrize('arg', ['j', 'bogus'])
59+
@pytest.mark.parametrize('arg', ['-j', '--bogus'])
6060
def test_exit_unknown_option(arg):
6161
assert subprocess.call([TOOL, arg]) == 1
6262

0 commit comments

Comments
 (0)