summaryrefslogtreecommitdiff
path: root/test/orm/test_query.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_query.py')
-rw-r--r--test/orm/test_query.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/orm/test_query.py b/test/orm/test_query.py
index 5c17cdaef..5bbe150c0 100644
--- a/test/orm/test_query.py
+++ b/test/orm/test_query.py
@@ -1005,7 +1005,7 @@ class RowLabelingTest(QueryTest):
@testing.fixture
def uname_fixture(self):
- class Foo(object):
+ class Foo:
pass
if False:
@@ -1341,7 +1341,7 @@ class GetTest(QueryTest):
def test_unique_param_names(self):
users = self.tables.users
- class SomeUser(object):
+ class SomeUser:
pass
s = users.select().where(users.c.id != 12).alias("users")
@@ -7714,7 +7714,7 @@ class QueryClsTest(QueryTest):
return MyQuery
def _callable_fixture(self):
- class MyQueryFactory(object):
+ class MyQueryFactory:
def __call__(self, *arg, **kw):
return Query(*arg, **kw)