Normalize line endings in test_enum_identity_compare.py (#183089)

This commit is contained in:
darkrain-nl
2026-09-25 09:51:53 +01:00
committed by GitHub
parent eccd809e3f
commit 8f3b07ea39
@@ -416,10 +416,10 @@ def mypy_errors(tmp_path_factory: pytest.TempPathFactory) -> dict[str, list[str]
for case in (*_PLAIN_ENUM_CASES, *_NO_FLAG_CASES)
},
**{case.id: case.values[0] for case in _FRAMEWORK_CASES},
}
assert len(sources) == len(_PLAIN_ENUM_CASES) + len(_NO_FLAG_CASES) + len(
_FRAMEWORK_CASES
), "Duplicate pytest.param id across case tables"
}
assert len(sources) == len(_PLAIN_ENUM_CASES) + len(_NO_FLAG_CASES) + len(
_FRAMEWORK_CASES
), "Duplicate pytest.param id across case tables"
case_id_by_module: dict[str, str] = {}
paths: list[Path] = []