diff options
Diffstat (limited to 'test/orm/generative.py')
-rw-r--r-- | test/orm/generative.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/generative.py b/test/orm/generative.py index 4a90c13cb..c850069ab 100644 --- a/test/orm/generative.py +++ b/test/orm/generative.py @@ -103,7 +103,7 @@ class GenerativeQueryTest(PersistTest): class ext1(MapperExtension): def populate_instance(self, mapper, selectcontext, row, instance, **flags): instance.TEST = "hello world" - return EXT_PASS + return EXT_CONTINUE assert query.options(extension(ext1()))[0].TEST == "hello world" def test_order_by(self): |