Remove skip test from murano engine package loader unit test.

Removes the @testtools.skipIf decorator from
test_load_package_except_lookup_error in
murano.unit.tests.engine.test_package_loader, because related bug was
removed [1].

This patch makes a trivial change by removing the skip.

[1] https://review.openstack.org/#/c/384713/

Change-Id: I86cfe4cedd63b0224fcc0186cdba671bb91004e9
Related-Bug: #1632107
This commit is contained in:
Felipe Monteiro 2017-02-16 15:19:44 -05:00
parent 9a97b58039
commit f59f3ba565
1 changed files with 0 additions and 1 deletions

View File

@ -181,7 +181,6 @@ class TestPackageCache(base.MuranoTestCase):
self.assertEqual(expected_fixations, self.loader._fixations)
self.loader.cleanup()
@testtools.skipIf(True, "Skip until bug #1632107 resolved.")
def test_load_package_except_lookup_error(self):
expected_error_msg = 'Package "test_package_name" is not found'
invalid_specs = [semantic_version.Spec('>=1.1.1'),