From b55e605853d91e6c7078101238dd52c3904e83eb Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Thu, 18 Aug 2016 17:03:02 -0400 Subject: 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 --- tests/test_apex_python_utils_py.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') 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) -- cgit 1.2.3-korg