diff --git a/oslo_messaging/tests/test_fixture.py b/oslo_messaging/tests/test_fixture.py index a8c2eb69c..73b68c2cd 100644 --- a/oslo_messaging/tests/test_fixture.py +++ b/oslo_messaging/tests/test_fixture.py @@ -57,13 +57,13 @@ class TestConfFixture(test_utils.BaseTestCase): def test_old_notifications_config_override(self): conf = self.messaging_conf.conf conf.set_override( - "notification_driver", "messaging") + "notification_driver", ["messaging"]) conf.set_override( "notification_transport_url", "http://xyz") conf.set_override( "notification_topics", ['topic1']) - self.assertEqual("messaging", + self.assertEqual(["messaging"], conf.oslo_messaging_notifications.driver) self.assertEqual("http://xyz", conf.oslo_messaging_notifications.transport_url)