diff options
Diffstat (limited to 'test/orm/test_utils.py')
-rw-r--r-- | test/orm/test_utils.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/orm/test_utils.py b/test/orm/test_utils.py index 3bd0230de..4d6c14863 100644 --- a/test/orm/test_utils.py +++ b/test/orm/test_utils.py @@ -78,7 +78,6 @@ class ContextualWarningsTest(fixtures.TestBase): "bar.foo_id, which conflicts with relationship(s): 'Foo.bars' " "(copies foo.id to bar.foo_id). " ), - raise_on_any_unexpected=True, ): decl_base.registry.configure() @@ -96,7 +95,6 @@ class ContextualWarningsTest(fixtures.TestBase): "invoked automatically in response to a user-initiated " "operation.)" ), - raise_on_any_unexpected=True, ): FooAlias = aliased(Foo) assert hasattr(FooAlias, "bars") @@ -115,7 +113,6 @@ class ContextualWarningsTest(fixtures.TestBase): "invoked automatically in response to a user-initiated " "operation.)" ), - raise_on_any_unexpected=True, ): foo = Foo() assert hasattr(foo, "bars") @@ -145,7 +142,6 @@ class ContextualWarningsTest(fixtures.TestBase): "process, which was invoked automatically in response to a " "user-initiated operation.)" ), - raise_on_any_unexpected=True, ): sess.execute(select(Foo)) |