Skip to content

Commit 6b99fdb

Browse files
committed
fix test failure due to oslo.cfg update
1 parent 6c4c7e5 commit 6b99fdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

caso/tests/extract/test_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
class TestCasoManager(base.TestCase):
3030
def setUp(self):
3131
super(TestCasoManager, self).setUp()
32-
manager.SUPPORTED_EXTRACTORS = {"foo": "foo.Bar"}
33-
self.flags(extractor="foo")
32+
manager.SUPPORTED_EXTRACTORS = {"nova": "foo.Bar"}
33+
self.flags(extractor="nova")
3434
self.p_extractor = mock.patch.dict('sys.modules',
3535
{'foo': mock.MagicMock()})
3636
self.p_extractor.start()

0 commit comments

Comments
 (0)