summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Antonio Osorio Robles <juan.osorio.robles@ericsson.com>2015-07-08 18:11:47 +0300
committerJuan Antonio Osorio Robles <jaosorior@redhat.com>2015-11-02 11:15:51 +0200
commit1da42ea7faaa47389ad83f70f035231041a01e29 (patch)
treedbca7dc4e503c51f0706b8e49a61199a9915af15
parentcea9b619291df1924a442ce3c43c27b870acba10 (diff)
downloadpython-barbicanclient-1da42ea7faaa47389ad83f70f035231041a01e29.tar.gz
Remove invalid skipping of tests
Change-Id: Id03e05edd300ae141a70115bb30d9e998a501ec2 Depends-On: I98a558862eed039ed6f33fbee474bdb86767313e Closes-bug: #1425667
-rw-r--r--functionaltests/client/v1/functional/test_orders.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/functionaltests/client/v1/functional/test_orders.py b/functionaltests/client/v1/functional/test_orders.py
index d926c5a..53fa625 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."""