diff options
| author | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2017-01-06 12:33:41 +0800 |
|---|---|---|
| committer | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2017-01-06 12:59:41 +0800 |
| commit | 99aeff4967c9cd1cb01408993eff72c4fcbada7d (patch) | |
| tree | 60fac3f631e3172643bb0be7c33c57b5fcc661be /openstackclient/tests/functional | |
| parent | 4d15a2a8fc50e64c73001a56d15763778f6dda5b (diff) | |
| download | python-openstackclient-99aeff4967c9cd1cb01408993eff72c4fcbada7d.tar.gz | |
Fix "ip availability show" command
SDK refactor broken ip availability show functional
test, We can not find a ip availability by network
name but only network ID, so we find network and
get the ID first, then find the ip availability
by the network ID.
Closes-Bug: 1653139
Change-Id: I246163fb875e2cdb9e5b091bac500a94268e8aa9
Diffstat (limited to 'openstackclient/tests/functional')
| -rw-r--r-- | openstackclient/tests/functional/network/v2/test_ip_availability.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/network/v2/test_ip_availability.py b/openstackclient/tests/functional/network/v2/test_ip_availability.py index edbe7e3c..b5c908f4 100644 --- a/openstackclient/tests/functional/network/v2/test_ip_availability.py +++ b/openstackclient/tests/functional/network/v2/test_ip_availability.py @@ -10,7 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import testtools import uuid from openstackclient.tests.functional import base @@ -47,7 +46,6 @@ class IPAvailabilityTests(base.TestCase): raw_output = self.openstack('ip availability list' + opts) self.assertIn(self.NETWORK_NAME, raw_output) - @testtools.skip('broken SDK testing') def test_ip_availability_show(self): opts = self.get_opts(self.FIELDS) raw_output = self.openstack( |
