From: Denis Laxalde Date: Tue, 2 Nov 2021 10:05:05 +0000 (+0100) Subject: Drop duplicated test_nextset() method of DatabaseAPI20Test X-Git-Tag: 3.0.2~3^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=479bdd42d3daf7ca755100c3d466ae239d1d9baf;p=thirdparty%2Fpsycopg.git Drop duplicated test_nextset() method of DatabaseAPI20Test Spotted by mypy: error: Name "test_nextset" already defined on line 742 --- diff --git a/tests/dbapi20.py b/tests/dbapi20.py index 86e42b53e..8d013facf 100644 --- a/tests/dbapi20.py +++ b/tests/dbapi20.py @@ -767,9 +767,6 @@ class DatabaseAPI20Test(unittest.TestCase): finally: con.close() - def test_nextset(self): - raise NotImplementedError('Drivers need to override this test') - def test_arraysize(self): # Not much here - rest of the tests for this are in test_fetchmany con = self._connect()