Skip to content

Commit

Permalink
Merge pull request #965 from DimitriPapadopoulos/codespell
Browse files Browse the repository at this point in the history
Fix typo found by codespell
  • Loading branch information
RonnyPfannschmidt authored Nov 10, 2023
2 parents c39489f + db2741c commit 1936572
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_config_overrides(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> No
monkeypatch.setenv(
"SETUPTOOLS_SCM_OVERRIDES_FOR_TEST_A", '{root="..", fallback_root=".."}'
)
overriden = Configuration.from_file(fn)
overridden = Configuration.from_file(fn)

assert pristine.root != overriden.root
assert pristine.fallback_root != overriden.fallback_root
assert pristine.root != overridden.root
assert pristine.fallback_root != overridden.fallback_root

0 comments on commit 1936572

Please sign in to comment.