Remove skip for test_fix_argument_yes unit test

The test is not failing anymore, so removing the skip
decorator.

Closes-Bug: 1918316
Change-Id: I9771ed73f3ff0da2025edb3fd3a84a9bfaab7eeb
This commit is contained in:
Martin Kopec 2021-06-22 11:48:09 +00:00
parent 53c02181f8
commit e638ce8b52
1 changed files with 0 additions and 2 deletions

View File

@ -19,7 +19,6 @@ import tempfile
from unittest import mock
from tempest.lib.cmd import check_uuid
from tempest.lib import decorators
from tempest.tests import base
@ -50,7 +49,6 @@ class TestCLInterface(base.TestCase):
with open(tests_file, "r") as f:
self.assertTrue(TestCLInterface.CODE == f.read())
@decorators.skip_because(bug='1918316')
def test_fix_argument_yes(self):
temp_dir = tempfile.mkdtemp(prefix='check-uuid-yes', dir=".")
self.addCleanup(shutil.rmtree, temp_dir, ignore_errors=True)