diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-09-24 14:22:33 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-09-24 14:22:33 -0400 |
| commit | d82d926fa2a1f98cae05b21528fe2fafebb52938 (patch) | |
| tree | 0e05574174220fbd3c112954a9b0fcf68e4968ee | |
| parent | 01d6f1d10453ee08462edbd2d1192b7114851c66 (diff) | |
| download | python-setuptools-git-d82d926fa2a1f98cae05b21528fe2fafebb52938.tar.gz | |
Fix warning in test
| -rw-r--r-- | distutils/tests/test_dist.py | 2 |
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): |
