commit | 66071d4cc561cffd5c1b7abe0d36ffe58a0e1ea7 | [log] [tgz] |
---|---|---|
author | Brianna Poulos <Brianna.Poulos@jhuapl.edu> | Tue Feb 28 13:10:15 2017 -0500 |
committer | Brianna Poulos <Brianna.Poulos@jhuapl.edu> | Tue Feb 28 14:29:22 2017 -0500 |
tree | cee164d3c56daa07a7c1041260b02f76b7ef901b | |
parent | c5ad78f1ba89e4907a783f86531ebf01344328b5 [diff] |
Fix oslotest import error The barbican-tempest-plugin gate has stopped working after export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1 was removed in Ibef3f9a135f14727bf57c29e766f838d7da56c68 since oslotest is no longer installed. This patch uses the tempest.lib base test instead of using the oslotest base test. Change-Id: Ifdf8b426c21e4b3a51f97cbc3d95eb842eb04515
diff --git a/barbican_tempest_plugin/tests/base.py b/barbican_tempest_plugin/tests/base.py index 1f97635..600ba80 100644 --- a/barbican_tempest_plugin/tests/base.py +++ b/barbican_tempest_plugin/tests/base.py
@@ -12,7 +12,7 @@ # License for the specific language governing permissions and limitations # under the License. -from oslotest import base +from tempest.lib import base class TestCase(base.BaseTestCase):