diff options
Diffstat (limited to 'test/orm/test_cache_key.py')
-rw-r--r-- | test/orm/test_cache_key.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/test_cache_key.py b/test/orm/test_cache_key.py index 7fb232b0b..5ed856a3c 100644 --- a/test/orm/test_cache_key.py +++ b/test/orm/test_cache_key.py @@ -134,7 +134,7 @@ class CacheKeyTest(CacheKeyFixture, _fixtures.FixtureTest): from sqlalchemy import Column, Integer, String - class Foo(object): + class Foo: id = Column(Integer) name = Column(String) @@ -152,7 +152,7 @@ class CacheKeyTest(CacheKeyFixture, _fixtures.FixtureTest): def test_loader_criteria_bound_param_thing(self): from sqlalchemy import Column, Integer - class Foo(object): + class Foo: id = Column(Integer) def go(param): |