Skip to content

Commit db2741c

Browse files
Fix typo found by codespell
1 parent 8bc8916 commit db2741c

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)