Skip to content
Snippets Groups Projects
Commit 9098528a authored by Brandon Heller's avatar Brandon Heller
Browse files

Fix CLI breakage with new test interface

parent 55c33584
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,7 @@ class MininetRunner( object ): ...@@ -230,7 +230,7 @@ class MininetRunner( object ):
mn.iperf() mn.iperf()
mn.stop() mn.stop()
elif test != 'build': elif test != 'build':
mn.run( test ) mn.run( getattr( mn, test ) )
elapsed = float( time.time() - start ) elapsed = float( time.time() - start )
info( 'completed in %0.3f seconds\n' % elapsed ) info( 'completed in %0.3f seconds\n' % elapsed )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment