diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-13 21:56:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-13 21:56:17 -0700 |
| commit | 0fc24e1a277513a303d845b38ac71f854fbc8f65 (patch) | |
| tree | 46a53c69f4e3ad6a4bfbde321172bbf4d77be063 /setuptools/tests | |
| parent | c405c1094fb449fc07b0a9a239225f559436b6a2 (diff) | |
| parent | 7ba7d1b9737c95e7dc77c0379a81f886d23653a4 (diff) | |
| download | python-setuptools-git-0fc24e1a277513a303d845b38ac71f854fbc8f65.tar.gz | |
Merge pull request #637 from stepshal/comparison
tests: fix comparison with None.
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py index 50a4fff8..a54ae7c9 100644 --- a/setuptools/tests/__init__.py +++ b/setuptools/tests/__init__.py @@ -327,4 +327,4 @@ class TestCommandTests: def testNoSuite(self): ts5 = makeSetup().get_command_obj('test') ts5.ensure_finalized() - assert ts5.test_suite == None + assert ts5.test_suite is None |
