aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/tests/test_impl_ifcfg.py
diff options
context:
space:
mode:
authorSarath Kumar <sarath.kutty@bigswitch.com>2016-09-23 15:56:30 -0700
committerSarath Kumar <sarath.kutty@bigswitch.com>2016-09-27 11:12:37 -0700
commit08590fc1a733a7f35958516f90258f1123791f06 (patch)
treead51f97bc312623e5a35faf797468cad2fac4786 /os_net_config/tests/test_impl_ifcfg.py
parent35823f261506f9256c1a227dd4a2770a0508c62d (diff)
Add options attribute to NFVSwitch
Adding options to NFVSwitch type bridge will give flexibility and avoid specific attributes like 'cpus' in the yaml file (which will now be moved into the options) Change-Id: I4d715b641c54de969b9195b1a4b16195b2d7e595
Diffstat (limited to 'os_net_config/tests/test_impl_ifcfg.py')
-rw-r--r--os_net_config/tests/test_impl_ifcfg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/os_net_config/tests/test_impl_ifcfg.py b/os_net_config/tests/test_impl_ifcfg.py
index c3acbc8..8586daa 100644
--- a/os_net_config/tests/test_impl_ifcfg.py
+++ b/os_net_config/tests/test_impl_ifcfg.py
@@ -318,7 +318,7 @@ IPADDR=172.16.2.7
NETMASK=255.255.255.0
"""
-_NFVSWITCH_CONFIG = ('SETUP_ARGS=\" -c 2,3,4,5 -u em1 -m storage5\"')
+_NFVSWITCH_CONFIG = ('SETUP_ARGS=\"-c 2,3,4,5 -u em1 -m storage5\"')
_OVS_IFCFG_PATCH_PORT = """# This file is autogenerated by os-net-config
DEVICE=br-pub-patch
@@ -590,7 +590,7 @@ class TestIfcfgNetConfig(base.TestCase):
iface_name = nfvswitch_internal.name
bridge = objects.NfvswitchBridge(members=[interface,
nfvswitch_internal],
- cpus="2,3,4,5")
+ options="-c 2,3,4,5")
self.provider.add_interface(interface)
self.provider.add_nfvswitch_internal(nfvswitch_internal)
self.provider.add_nfvswitch_bridge(bridge)