diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:17:46 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:17:46 +0200 |
| commit | c0d4c5676e3118c7189a97a555bfb70447276f29 (patch) | |
| tree | c29939aebadd6a5b946d6b289e4babc57b7ea38b /tests/test_util.py | |
| parent | 66f3b499473504c130a52d222b827a4413127f12 (diff) | |
| download | python-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.py | 2 |
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' |
