diff options
author | Gord Thompson <gord@gordthompson.com> | 2021-08-12 13:04:28 -0600 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-09-30 10:10:16 -0400 |
commit | 257f9130c321aaa948690d0e49c7352ad1188abd (patch) | |
tree | 2648c88460c3e5de847ee998edb7a6df0aa9b261 /lib/sqlalchemy/testing/warnings.py | |
parent | f7f2df607301afcd11dd49a2ccb632291de12d29 (diff) | |
download | sqlalchemy-257f9130c321aaa948690d0e49c7352ad1188abd.tar.gz |
Modernize tests - calling_mapper_directly
a few changes for py2k:
* map_imperatively() includes the check that a class
is being sent, this was only working for mapper() before
* the test suite didn't place the py2k "autouse" workaround
in the correct order, seemingly, tried to adjust the
per-test ordering setup in pytestplugin.py
Change-Id: I4cc39630724e810953cfda7b2afdadc8b948e3c2
Diffstat (limited to 'lib/sqlalchemy/testing/warnings.py')
-rw-r--r-- | lib/sqlalchemy/testing/warnings.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/sqlalchemy/testing/warnings.py b/lib/sqlalchemy/testing/warnings.py index f72d53d67..67ed452a0 100644 --- a/lib/sqlalchemy/testing/warnings.py +++ b/lib/sqlalchemy/testing/warnings.py @@ -66,11 +66,6 @@ def setup_filters(): # we are moving one at a time for msg in [ # - # ORM configuration - # - r"Calling the mapper\(\) function directly outside of a " - "declarative registry", - # # ORM Query # r"The Query\.get\(\) method", |