From 239fc927cfea3ea52de858a88ab5a6b0da89c165 Mon Sep 17 00:00:00 2001 From: Cuong Nguyen Date: Mon, 12 Dec 2016 08:30:44 +0700 Subject: [PATCH] Fix test function name with two underscores to have only one Change-Id: I4da314e06a88a9c2cb3c01c380375c1db4a1aace --- tests/test_ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ip.py b/tests/test_ip.py index ac54225ca7..c552312c19 100644 --- a/tests/test_ip.py +++ b/tests/test_ip.py @@ -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))