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
This commit is contained in:
Huanxuan Ao 2017-01-06 13:14:37 +08:00
parent 4d15a2a8fc
commit d80b1465e6

@ -13,17 +13,14 @@
# License for the specific language governing permissions and limitations
# under the License.
import testtools
from openstackclient.tests.functional import base
class TestNetworkServiceProvider(base.TestCase):
"""Functional tests for network service provider"""
SERVICE_TYPE = ['L3_ROUTER_NAT']
SERVICE_TYPE = 'L3_ROUTER_NAT'
@testtools.skip('broken SDK testing')
def test_network_service_provider_list(self):
raw_output = self.openstack('network service provider list')
self.assertIn(self.SERVICE_TYPE, raw_output)