diff options
-rw-r--r-- | tests/dbapi20.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbapi20.py b/tests/dbapi20.py index f707c09..ff98ddc 100644 --- a/tests/dbapi20.py +++ b/tests/dbapi20.py @@ -762,7 +762,7 @@ class DatabaseAPI20Test(unittest.TestCase): names=cur.fetchall() assert len(names) == len(self.samples) s=cur.nextset() - assert s == None,'No more return sets, should return None' + assert s is None, 'No more return sets, should return None' finally: self.help_nextset_tearDown(cur) |