From e69355f78fd0b933ce59d30d222f959cd5ee3742 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 27 Aug 2013 15:16:38 -0700 Subject: [PATCH] One last code check fix: line too long --- mininet/test/test_nets.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mininet/test/test_nets.py b/mininet/test/test_nets.py index 9176646..159ba34 100755 --- a/mininet/test/test_nets.py +++ b/mininet/test/test_nets.py @@ -29,7 +29,8 @@ class testSingleSwitchCommon( object ): def testSingle5( self ): "Ping test on 5-host single-switch topology" - mn = Mininet( SingleSwitchTopo( k=5 ), self.switchClass, Host, Controller ) + mn = Mininet( SingleSwitchTopo( k=5 ), self.switchClass, Host, + Controller ) dropped = mn.run( mn.ping ) self.assertEqual( dropped, 0 )