Remove invalid skipping of tests

Change-Id: Id03e05edd300ae141a70115bb30d9e998a501ec2
Depends-On: I98a558862eed039ed6f33fbee474bdb86767313e
Closes-bug: #1425667
This commit is contained in:
Juan Antonio Osorio Robles 2015-07-08 18:11:47 +03:00 committed by Juan Antonio Osorio Robles
parent cea9b61929
commit 1da42ea7fa
1 changed files with 0 additions and 3 deletions

View File

@ -57,7 +57,6 @@ class OrdersTestCase(base.TestCase):
self.cleanup.delete_all_entities()
super(OrdersTestCase, self).tearDown()
@testcase.skip('Launchpad 1425667')
@testcase.attr('positive')
def test_create_order_defaults_wout_name(self):
"""Create an order without the name attribute."""
@ -69,7 +68,6 @@ class OrdersTestCase(base.TestCase):
order_resp = self.barbicanclient.orders.get(order_ref)
self.assertEqual(order.name, order.name)
@testcase.skip('Launchpad 1420444')
@testcase.attr('positive')
def test_create_order_defaults_w_empty_name(self):
"""Create an order the name attribute an empty string."""
@ -81,7 +79,6 @@ class OrdersTestCase(base.TestCase):
order_resp = self.barbicanclient.orders.get(order_ref)
self.assertEqual(order_resp.name, order.name)
@testcase.skip('Launchpad 1425667')
@testcase.attr('positive')
def test_create_order_defaults_payload_content_type_none(self):
"""Covers creating orders with various valid payload content types."""