diff options
| author | stepshal <nessento@openmailbox.org> | 2016-07-13 11:53:42 +0700 |
|---|---|---|
| committer | stepshal <nessento@openmailbox.org> | 2016-07-13 11:53:42 +0700 |
| commit | 7ba7d1b9737c95e7dc77c0379a81f886d23653a4 (patch) | |
| tree | cda267d39e4cc0016e77a93d30cab202a1ea2243 /setuptools/tests/__init__.py | |
| parent | e3e21fd3d608d72ebe1ba2e4d2b3a59fbca76554 (diff) | |
| download | python-setuptools-git-7ba7d1b9737c95e7dc77c0379a81f886d23653a4.tar.gz | |
Fix comparison with None.
Diffstat (limited to 'setuptools/tests/__init__.py')
| -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 32447356..87dc8f54 100644 --- a/setuptools/tests/__init__.py +++ b/setuptools/tests/__init__.py @@ -325,4 +325,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 |
