Skip to content

Commit bbbaef8

Browse files
committed
fix windows test failure caused by / vs \
1 parent 7d1a1af commit bbbaef8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mypy/test/teststubtest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2773,8 +2773,8 @@ def test_reexport_reports_import_location(self) -> None:
27732773
)
27742774

27752775
assert filtered_output.count('stub does not have parameter "x"') == 1
2776-
assert "test_module/__init__.pyi" not in filtered_output
2777-
assert "test_module/mod.py:1" in filtered_output
2776+
assert "__init__.pyi" not in filtered_output
2777+
assert "mod.py:1" in filtered_output
27782778

27792779
def test_ignore_flags(self) -> None:
27802780
output = run_stubtest(

0 commit comments

Comments
 (0)