diff --git a/glance/tests/unit/fixtures.py b/glance/tests/unit/fixtures.py index 0357493c4b..dfe1f99fc9 100644 --- a/glance/tests/unit/fixtures.py +++ b/glance/tests/unit/fixtures.py @@ -18,7 +18,6 @@ import os import warnings import fixtures as pyfixtures -from oslo_db import warning as oslo_db_warning from sqlalchemy import exc as sqla_exc _TRUE_VALUES = ('True', 'true', '1', 'yes') @@ -147,16 +146,6 @@ class WarningsFixture(pyfixtures.Fixture): category=DeprecationWarning, ) - # Disable deprecation warning for oslo.db's EngineFacade. We *really* - # need to get off this but it's not happening while sqlalchemy 2.0 - # stuff is ongoing - - warnings.filterwarnings( - 'ignore', - category=oslo_db_warning.OsloDBDeprecationWarning, - message='EngineFacade is deprecated', - ) - # Enable deprecation warnings for glance itself to capture upcoming # SQLAlchemy changes