summaryrefslogtreecommitdiff
path: root/test/sql/test_operators.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2022-11-03 20:52:21 +0100
committerFederico Caselli <cfederico87@gmail.com>2022-11-16 23:03:04 +0100
commit4eb4ceca36c7ce931ea65ac06d6ed08bf459fc66 (patch)
tree4970cff3f78489a4a0066cd27fd4bae682402957 /test/sql/test_operators.py
parent3fc6c40ea77c971d3067dab0fdf57a5b5313b69b (diff)
downloadsqlalchemy-4eb4ceca36c7ce931ea65ac06d6ed08bf459fc66.tar.gz
Try running pyupgrade on the code
command run is "pyupgrade --py37-plus --keep-runtime-typing --keep-percent-format <files...>" pyupgrade will change assert_ to assertTrue. That was reverted since assertTrue does not exists in sqlalchemy fixtures Change-Id: Ie1ed2675c7b11d893d78e028aad0d1576baebb55
Diffstat (limited to 'test/sql/test_operators.py')
-rw-r--r--test/sql/test_operators.py16
1 files changed, 7 insertions, 9 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py
index 79ca00e14..e00cacad8 100644
--- a/test/sql/test_operators.py
+++ b/test/sql/test_operators.py
@@ -702,7 +702,7 @@ class CustomComparatorTest(_CustomComparatorTests, fixtures.TestBase):
class MyInteger(Integer):
class comparator_factory(TypeEngine.Comparator):
def __init__(self, expr):
- super(MyInteger.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("goofy")(other)
@@ -721,7 +721,7 @@ class TypeDecoratorComparatorTest(_CustomComparatorTests, fixtures.TestBase):
class comparator_factory(TypeDecorator.Comparator):
def __init__(self, expr):
- super(MyInteger.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("goofy")(other)
@@ -742,7 +742,7 @@ class TypeDecoratorTypeDecoratorComparatorTest(
class comparator_factory(TypeDecorator.Comparator):
def __init__(self, expr):
- super(MyIntegerOne.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("goofy")(other)
@@ -764,9 +764,7 @@ class TypeDecoratorWVariantComparatorTest(
class SomeOtherInteger(Integer):
class comparator_factory(TypeEngine.Comparator):
def __init__(self, expr):
- super(SomeOtherInteger.comparator_factory, self).__init__(
- expr
- )
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("not goofy")(other)
@@ -780,7 +778,7 @@ class TypeDecoratorWVariantComparatorTest(
class comparator_factory(TypeDecorator.Comparator):
def __init__(self, expr):
- super(MyInteger.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("goofy")(other)
@@ -798,7 +796,7 @@ class CustomEmbeddedinTypeDecoratorTest(
class MyInteger(Integer):
class comparator_factory(TypeEngine.Comparator):
def __init__(self, expr):
- super(MyInteger.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def __add__(self, other):
return self.expr.op("goofy")(other)
@@ -818,7 +816,7 @@ class NewOperatorTest(_CustomComparatorTests, fixtures.TestBase):
class MyInteger(Integer):
class comparator_factory(TypeEngine.Comparator):
def __init__(self, expr):
- super(MyInteger.comparator_factory, self).__init__(expr)
+ super().__init__(expr)
def foob(self, other):
return self.expr.op("foob")(other)