summaryrefslogtreecommitdiff
path: root/tests/test_util.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:17:46 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:17:46 +0200
commitc0d4c5676e3118c7189a97a555bfb70447276f29 (patch)
treec29939aebadd6a5b946d6b289e4babc57b7ea38b /tests/test_util.py
parent66f3b499473504c130a52d222b827a4413127f12 (diff)
downloadpython-setuptools-git-c0d4c5676e3118c7189a97a555bfb70447276f29.tar.gz
Issue #19600: Use specific asserts in distutils tests.
Diffstat (limited to 'tests/test_util.py')
-rw-r--r--tests/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index eac9b514..00219cfd 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -266,7 +266,7 @@ class UtilTestCase(support.EnvironGuard, unittest.TestCase):
self.assertTrue(strtobool(y))
for n in no:
- self.assertTrue(not strtobool(n))
+ self.assertFalse(strtobool(n))
def test_rfc822_escape(self):
header = 'I am a\npoor\nlonesome\nheader\n'