Skip to content

Commit d82d926

Browse files
committed
Fix warning in test
1 parent 01d6f1d commit d82d926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/tests/test_dist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ def test_custom_pydistutils(self, temp_home):
459459
def test_extra_pydistutils(self, monkeypatch, tmp_path):
460460
jaraco.path.build({'overrides.cfg': ''}, tmp_path)
461461
filename = tmp_path / 'overrides.cfg'
462-
monkeypatch.setenv('DIST_EXTRA_CONFIG', filename)
462+
monkeypatch.setenv('DIST_EXTRA_CONFIG', str(filename))
463463
assert str(filename) in Distribution().find_config_files()
464464

465465
def test_fix_help_options(self):

0 commit comments

Comments
 (0)