summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-09-24 14:22:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-09-24 14:22:33 -0400
commitd82d926fa2a1f98cae05b21528fe2fafebb52938 (patch)
tree0e05574174220fbd3c112954a9b0fcf68e4968ee
parent01d6f1d10453ee08462edbd2d1192b7114851c66 (diff)
downloadpython-setuptools-git-d82d926fa2a1f98cae05b21528fe2fafebb52938.tar.gz
Fix warning in test
-rw-r--r--distutils/tests/test_dist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils/tests/test_dist.py b/distutils/tests/test_dist.py
index b4a2092e..a9438326 100644
--- a/distutils/tests/test_dist.py
+++ b/distutils/tests/test_dist.py
@@ -459,7 +459,7 @@ class TestMetadata(support.TempdirManager):
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):