From: Berker Peksag Date: Tue, 14 Jun 2016 10:25:11 +0000 (+0300) Subject: Remove empty setUp and tearDown methods from sqlite3 tests X-Git-Tag: v3.6.0a3~152^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b50899a28c6fa860f4654224dbdf60c47c72821;p=thirdparty%2FPython%2Fcpython.git Remove empty setUp and tearDown methods from sqlite3 tests They are not used as base classes by another tests so they can safely be removed. --- diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py index 903e5990316d..d9c32282a509 100644 --- a/Lib/sqlite3/test/dbapi.py +++ b/Lib/sqlite3/test/dbapi.py @@ -695,12 +695,6 @@ class ExtensionTests(unittest.TestCase): self.assertEqual(result, 5, "Basic test of Connection.executescript") class ClosedConTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckClosedConCursor(self): con = sqlite.connect(":memory:") con.close() @@ -768,12 +762,6 @@ class ClosedConTests(unittest.TestCase): con() class ClosedCurTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckClosed(self): con = sqlite.connect(":memory:") cur = con.cursor() diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index de69569d1c0d..cafff932b4da 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -25,12 +25,6 @@ import unittest import sqlite3 as sqlite class CollationTests(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - def CheckCreateCollationNotCallable(self): con = sqlite.connect(":memory:") with self.assertRaises(TypeError) as cm: