summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_manifest.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-12-21 22:04:09 -0500
committerJason R. Coombs <jaraco@jaraco.com>2019-12-21 22:28:35 -0500
commitedaf1b50fa59eff57fdcaddf0a53431b9612e7a7 (patch)
treeb8c5d520c0901ddae5d1420a9d2afb64371baac6 /setuptools/tests/test_manifest.py
parent88c70244ba0ac03a1c6fbe32838ad34b9864f24d (diff)
downloadpython-setuptools-git-pr1887-rebase.tar.gz
Simplify warning.pr1887-rebase
Diffstat (limited to 'setuptools/tests/test_manifest.py')
-rw-r--r--setuptools/tests/test_manifest.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/setuptools/tests/test_manifest.py b/setuptools/tests/test_manifest.py
index c83f9a7c..25e65ce5 100644
--- a/setuptools/tests/test_manifest.py
+++ b/setuptools/tests/test_manifest.py
@@ -624,8 +624,5 @@ class TestFileListTest(TempDirTestCase):
mm.warn = mock.Mock()
mm.run()
- mm.warn.assert_called_with(
- "Either specify package_data manually, or use "
- "include_package_data=True, but not both. Proceeding as if "
- "package_data was not specified."
- )
+ msg = "Distutils 'package_data' ignored due to 'include_package_data'."
+ mm.warn.assert_called_with(msg)