Skip to content

Commit 511b788

Browse files
committed
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
1 parent 96f3c7e commit 511b788

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,15 @@
1313
# License for the specific language governing permissions and limitations
1414
# under the License.
1515

16-
import testtools
17-
1816
from openstackclient.tests.functional import base
1917

2018

2119
class NetworkQosRuleTypeTests(base.TestCase):
2220
"""Functional tests for Network QoS rule type. """
2321

2422
AVAILABLE_RULE_TYPES = ['dscp_marking',
25-
'bandwidth_limit',
26-
'minimum_bandwidth']
23+
'bandwidth_limit']
2724

28-
@testtools.skip('broken SDK testing')
2925
def test_qos_rule_type_list(self):
3026
raw_output = self.openstack('network qos rule type list')
3127
for rule_type in self.AVAILABLE_RULE_TYPES:

0 commit comments

Comments
 (0)