Skip to content

Commit 1936572

Browse files
Merge pull request #965 from DimitriPapadopoulos/codespell
Fix typo found by codespell
2 parents c39489f + db2741c commit 1936572

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testing/test_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_config_overrides(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> No
9393
monkeypatch.setenv(
9494
"SETUPTOOLS_SCM_OVERRIDES_FOR_TEST_A", '{root="..", fallback_root=".."}'
9595
)
96-
overriden = Configuration.from_file(fn)
96+
overridden = Configuration.from_file(fn)
9797

98-
assert pristine.root != overriden.root
99-
assert pristine.fallback_root != overriden.fallback_root
98+
assert pristine.root != overridden.root
99+
assert pristine.fallback_root != overridden.fallback_root

0 commit comments

Comments
 (0)