Fix test function name with two underscores to have only one

Change-Id: I4da314e06a88a9c2cb3c01c380375c1db4a1aace
This commit is contained in:
Cuong Nguyen 2016-12-12 08:30:44 +07:00
parent 097ab80d9b
commit 239fc927cf

View File

@ -24,7 +24,7 @@ class TestIPManager(unittest.TestCase):
self.assertEqual(2, len(manager.used))
self.assertEqual(254, len(manager.queues['test']))
def test__instantiation_with_used_list(self):
def test_instantiation_with_used_list(self):
manager = ip.IPManager(used_ips=['192.168.0.0', '192.168.0.255'])
self.assertEqual(2, len(manager.used))