summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-21 13:43:19 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-21 13:43:19 +0100
commit90c31496690312f271a1619a79e9dc98d0b4ae3c (patch)
treec11b53c8a7d7def38cddc0cd2c72c9d87c6372c7 /setuptools/tests
parentfd5fcbb1ec200ba2b0c657628a591ce2255998e3 (diff)
downloadpython-setuptools-git-90c31496690312f271a1619a79e9dc98d0b4ae3c.tar.gz
Fix problems with backup directory
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_dist_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py
index 605cb196..350e6429 100644
--- a/setuptools/tests/test_dist_info.py
+++ b/setuptools/tests/test_dist_info.py
@@ -125,8 +125,8 @@ class TestDistInfo:
expected_egg_info = 1 if keep_egg_info else 0
assert len(list(out.glob("*.egg-info"))) == expected_egg_info
assert len(list(tmp_path.glob("*.egg-info"))) == 0
- assert len(list(out.glob("__bkp__.*.__bkp__"))) == 0
- assert len(list(tmp_path.glob("__bkp__.*.__bkp__"))) == 0
+ assert len(list(out.glob("*.__bkp__"))) == 0
+ assert len(list(tmp_path.glob("*.__bkp__"))) == 0
class TestWheelCompatibility: