Skip to content

Commit d80b146

Browse files
author
Huanxuan Ao
committed
Fix network service provider functional test
SDK refactor broken network service provider functional test, tested this command works, but there is a error in the funtional test, so fix it. Change-Id: I783c58cedd39a05b665e47709b2b5321871e558b Closes-Bug: 1653138
1 parent 4d15a2a commit d80b146

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,14 @@
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 TestNetworkServiceProvider(base.TestCase):
2220
"""Functional tests for network service provider"""
2321

24-
SERVICE_TYPE = ['L3_ROUTER_NAT']
22+
SERVICE_TYPE = 'L3_ROUTER_NAT'
2523

26-
@testtools.skip('broken SDK testing')
2724
def test_network_service_provider_list(self):
2825
raw_output = self.openstack('network service provider list')
2926
self.assertIn(self.SERVICE_TYPE, raw_output)

0 commit comments

Comments
 (0)