Skip to content

Commit

Permalink
Fix warning in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 24, 2022
1 parent 01d6f1d commit d82d926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distutils/tests/test_dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def test_custom_pydistutils(self, temp_home):
def test_extra_pydistutils(self, monkeypatch, tmp_path):
jaraco.path.build({'overrides.cfg': ''}, tmp_path)
filename = tmp_path / 'overrides.cfg'
monkeypatch.setenv('DIST_EXTRA_CONFIG', filename)
monkeypatch.setenv('DIST_EXTRA_CONFIG', str(filename))
assert str(filename) in Distribution().find_config_files()

def test_fix_help_options(self):
Expand Down

0 comments on commit d82d926

Please sign in to comment.