summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authornullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2022-05-10 22:07:56 +0800
committernullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2022-05-10 22:07:56 +0800
commitd31f75a19e0e19d103a092910d8ac6948b1f9c32 (patch)
tree7e58ad3b8103071fac2dabbe69ceb0865fb7a7d2 /setuptools/tests
parented6790fb0220686c648c578726c92664984bcaec (diff)
downloadpython-setuptools-git-d31f75a19e0e19d103a092910d8ac6948b1f9c32.tar.gz
Fix mistake on recursive glob test
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_build_py.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_py.py b/setuptools/tests/test_build_py.py
index 58fee831..f6f0d944 100644
--- a/setuptools/tests/test_build_py.py
+++ b/setuptools/tests/test_build_py.py
@@ -44,7 +44,7 @@ def test_recursive_in_package_data_glob(tmpdir_cwd):
dist.parse_command_line()
dist.run_commands()
- assert stat.S_IREG(os.stat('build/lib/path/subpath/subsubpath/data').st_mode), \
+ assert stat.S_ISREG(os.stat('build/lib/path/subpath/subsubpath/data').st_mode), \
"File is not included"