diff options
Diffstat (limited to 'test/sql/test_operators.py')
-rw-r--r-- | test/sql/test_operators.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py index aaeed68dd..270e79ba1 100644 --- a/test/sql/test_operators.py +++ b/test/sql/test_operators.py @@ -608,7 +608,7 @@ class ExtensionOperatorTest(fixtures.TestBase, testing.AssertsCompiledSQL): class JSONIndexOpTest(fixtures.TestBase, testing.AssertsCompiledSQL): - def setUp(self): + def setup_test(self): class MyTypeCompiler(compiler.GenericTypeCompiler): def visit_mytype(self, type_, **kw): return "MYTYPE" @@ -766,7 +766,7 @@ class JSONIndexOpTest(fixtures.TestBase, testing.AssertsCompiledSQL): class ArrayIndexOpTest(fixtures.TestBase, testing.AssertsCompiledSQL): - def setUp(self): + def setup_test(self): class MyTypeCompiler(compiler.GenericTypeCompiler): def visit_mytype(self, type_, **kw): return "MYTYPE" @@ -2370,7 +2370,7 @@ class MatchTest(fixtures.TestBase, testing.AssertsCompiledSQL): class RegexpTest(fixtures.TestBase, testing.AssertsCompiledSQL): __dialect__ = "default" - def setUp(self): + def setup_test(self): self.table = table( "mytable", column("myid", Integer), column("name", String) ) @@ -2403,7 +2403,7 @@ class RegexpTest(fixtures.TestBase, testing.AssertsCompiledSQL): class RegexpTestStrCompiler(fixtures.TestBase, testing.AssertsCompiledSQL): __dialect__ = "default_enhanced" - def setUp(self): + def setup_test(self): self.table = table( "mytable", column("myid", Integer), column("name", String) ) |