aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/tests
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2014-07-03 14:12:01 -0400
committerDan Prince <dprince@redhat.com>2014-07-03 14:12:01 -0400
commitb3318a4c54e685733bff9e5a09c00a6cce50241d (patch)
tree9670eca958477193d8dec9d8b8960bd46dbde3e9 /os_net_config/tests
parent7546d736d6883ee705c2b4dd1b1463d81386b2e7 (diff)
ENI: bring up bridges first on Debian
We should bring up the interfaces on boot in the same order with which we bring them up in this tool.
Diffstat (limited to 'os_net_config/tests')
-rw-r--r--os_net_config/tests/test_impl_eni.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/os_net_config/tests/test_impl_eni.py b/os_net_config/tests/test_impl_eni.py
index a3656bf..28c9c98 100644
--- a/os_net_config/tests/test_impl_eni.py
+++ b/os_net_config/tests/test_impl_eni.py
@@ -198,4 +198,4 @@ class TestENINetConfigApply(base.TestCase):
self.provider.addBridge(bridge)
self.provider.apply()
iface_data = utils.get_file_data(self.temp_config_file.name)
- self.assertEqual((_OVS_PORT_IFACE + _OVS_BRIDGE_DHCP), iface_data)
+ self.assertEqual((_OVS_BRIDGE_DHCP + _OVS_PORT_IFACE), iface_data)