Fix warning in test · pypa/distutils@d82d926

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):