File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ def test_py_typed(testdir):
552
552
553
553
def test_mypy_no_status_check (testdir , xdist_args ):
554
554
"""Verify that --mypy-no-status-check disables MypyStatusItem collection."""
555
- testdir .makepyfile (thon = "one: int = 1" )
555
+ testdir .makepyfile ("one: int = 1" )
556
556
result = testdir .runpytest_subprocess ("--mypy" , * xdist_args )
557
557
mypy_file_checks = 1
558
558
mypy_status_check = 1
@@ -565,7 +565,7 @@ def test_mypy_no_status_check(testdir, xdist_args):
565
565
566
566
def test_mypy_xfail_passes (testdir , xdist_args ):
567
567
"""Verify that --mypy-xfail passes passes."""
568
- testdir .makepyfile (thon = "one: int = 1" )
568
+ testdir .makepyfile ("one: int = 1" )
569
569
result = testdir .runpytest_subprocess ("--mypy" , * xdist_args )
570
570
mypy_file_checks = 1
571
571
mypy_status_check = 1
@@ -578,7 +578,7 @@ def test_mypy_xfail_passes(testdir, xdist_args):
578
578
579
579
def test_mypy_xfail_xfails (testdir , xdist_args ):
580
580
"""Verify that --mypy-xfail xfails failures."""
581
- testdir .makepyfile (thon = "one: str = 1" )
581
+ testdir .makepyfile ("one: str = 1" )
582
582
result = testdir .runpytest_subprocess ("--mypy" , * xdist_args )
583
583
mypy_file_checks = 1
584
584
mypy_status_check = 1
You can’t perform that action at this time.
0 commit comments