summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/network
diff options
context:
space:
mode:
authorSteve Martinelli <s.martinelli@gmail.com>2017-01-13 12:35:49 -0500
committerSteve Martinelli <s.martinelli@gmail.com>2017-01-13 12:07:27 -0800
commit14ff3ba19e2cb5e6b7b92b15cf6a33474c3adde3 (patch)
tree36a36bf07bba319ea7f18589815661ac6096edfa /openstackclient/tests/functional/network
parentf8e2cf80a1d694045907bf420b6784464f0a6c0b (diff)
downloadpython-openstackclient-14ff3ba19e2cb5e6b7b92b15cf6a33474c3adde3.tar.gz
fix functional tests for network agents
As of SDK v0.9.11 the get_agent method no longer supports the "ignore_missing" parameter. Change-Id: Id655bf8499ed1a102a6bf583927cf66139581ab0
Diffstat (limited to 'openstackclient/tests/functional/network')
-rw-r--r--openstackclient/tests/functional/network/v2/test_network_agent.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/openstackclient/tests/functional/network/v2/test_network_agent.py b/openstackclient/tests/functional/network/v2/test_network_agent.py
index e99dcef6..dd6112e7 100644
--- a/openstackclient/tests/functional/network/v2/test_network_agent.py
+++ b/openstackclient/tests/functional/network/v2/test_network_agent.py
@@ -10,8 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import testtools
-
from openstackclient.tests.functional import base
@@ -28,13 +26,11 @@ class NetworkAgentTests(base.TestCase):
# get the list of network agent IDs.
cls.IDs = raw_output.split('\n')
- @testtools.skip('broken SDK testing')
def test_network_agent_show(self):
opts = self.get_opts(self.FIELDS)
raw_output = self.openstack('network agent show ' + self.IDs[0] + opts)
self.assertEqual(self.IDs[0] + "\n", raw_output)
- @testtools.skip('broken SDK testing')
def test_network_agent_set(self):
opts = self.get_opts(['admin_state_up'])
self.openstack('network agent set --disable ' + self.IDs[0])