From 1da42ea7faaa47389ad83f70f035231041a01e29 Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Robles Date: Wed, 8 Jul 2015 18:11:47 +0300 Subject: [PATCH] Remove invalid skipping of tests Change-Id: Id03e05edd300ae141a70115bb30d9e998a501ec2 Depends-On: I98a558862eed039ed6f33fbee474bdb86767313e Closes-bug: #1425667 --- functionaltests/client/v1/functional/test_orders.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/functionaltests/client/v1/functional/test_orders.py b/functionaltests/client/v1/functional/test_orders.py index d926c5a0..53fa625c 100644 --- a/functionaltests/client/v1/functional/test_orders.py +++ b/functionaltests/client/v1/functional/test_orders.py @@ -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."""