From 5e48f8445c33a45ba36c9612f52fcaeca5edd27f Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 25 Jan 2019 11:36:54 -0500 Subject: Fix mssql quote schema warning The deprecations review didn't include tests of identifier_preparer.quote.force for backends, so MSSQL slipped through. We have to fully reimplement the deprecation warning here so that it passes tests which are now enabled for all backends. Change-Id: I9d07e6766e16b5a35b7f7566f1daf94b04346270 --- test/sql/test_deprecations.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/sql/test_deprecations.py b/test/sql/test_deprecations.py index 2e4042a1b..7990cd56c 100644 --- a/test/sql/test_deprecations.py +++ b/test/sql/test_deprecations.py @@ -28,6 +28,8 @@ from sqlalchemy.testing import mock class DeprecationWarningsTest(fixtures.TestBase): + __backend__ = True + def test_ident_preparer_force(self): preparer = testing.db.dialect.identifier_preparer preparer.quote("hi") -- cgit v1.2.1