Fix N536 hacking check

Closes-bug: #1673716
Change-Id: I1b25ae8b5a97f8dbdb212dabfc913baaf5f3357f
This commit is contained in:
Janonymous 2017-03-17 09:37:13 +00:00
parent a4d92f3f61
commit cb30537426
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class TestVethDriver(base.TestKuryrBase):
def test_get_default_network_id(self):
veth_driver = veth.VethDriver()
host_network = veth_driver.get_default_network_id()
self.assertEqual(host_network, None)
self.assertIsNone(host_network)
@mock.patch.object(binding, 'port_bind')
def test_create_host_iface(self, mock_port_bind):