summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-08-18 17:03:02 -0400
committerDan Radez <dradez@redhat.com>2016-08-22 11:19:54 -0400
commitb55e605853d91e6c7078101238dd52c3904e83eb (patch)
tree09c4c49c08b2557aabcb889fa0b43b8235771eeb /tests
parent7de33840b2cb0d9ccf29b28fa477f5bb57b2508c (diff)
removing enabled_network_list as an argument to network env
NetworkSettings Object is being rendered and passed to net env object already. We can get the enabled network list from the network settings object instead of passing it in as an arg. Basically just removing duplicate arguments to the network env object. Change-Id: I828c60878a0432cae2b37c08ae1896dce49071d0 Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_apex_python_utils_py.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_apex_python_utils_py.py b/tests/test_apex_python_utils_py.py
index 12ac4091..1f280356 100644
--- a/tests/test_apex_python_utils_py.py
+++ b/tests/test_apex_python_utils_py.py
@@ -75,6 +75,5 @@ class TestCommonUtils(object):
args = self.parser.parse_args(['nic-template',
'-s', net_sets,
'-r', 'compute',
- '-t', nic_template,
- '-n', 'admin_network'])
+ '-t', nic_template])
assert_equal(build_nic_template(args), None)