summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/network
diff options
context:
space:
mode:
authorSteve Martinelli <s.martinelli@gmail.com>2017-01-11 15:45:19 -0500
committerSteve Martinelli <s.martinelli@gmail.com>2017-01-12 14:16:48 -0500
commit511b7880ea0dae6042426aac3743ac9941fc8db3 (patch)
tree401ae2af922655b8a54e40ea704c65bf82fee890 /openstackclient/tests/functional/network
parent96f3c7e78315e77ca4b550cff71b104095f8dbc3 (diff)
downloadpython-openstackclient-511b7880ea0dae6042426aac3743ac9941fc8db3.tar.gz
unskip network qos rule type functional test
with the SDK at 0.9.12 the below test fails with: 'minimum_bandwidth' not in +-----------------+ | Type | +-----------------+ | dscp_marking | | bandwidth_limit | +-----------------+ So remove 'minimum_bandwidth' from the asserted fields. Change-Id: I24ff691ae5a946d901afa763973305025829280b Closes-Bug: 1653137
Diffstat (limited to 'openstackclient/tests/functional/network')
-rw-r--r--openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py b/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py
index 2bb04a9d..7dff0cbd 100644
--- a/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py
+++ b/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import testtools
-
from openstackclient.tests.functional import base
@@ -22,10 +20,8 @@ class NetworkQosRuleTypeTests(base.TestCase):
"""Functional tests for Network QoS rule type. """
AVAILABLE_RULE_TYPES = ['dscp_marking',
- 'bandwidth_limit',
- 'minimum_bandwidth']
+ 'bandwidth_limit']
- @testtools.skip('broken SDK testing')
def test_qos_rule_type_list(self):
raw_output = self.openstack('network qos rule type list')
for rule_type in self.AVAILABLE_RULE_TYPES: