Correct the comments of do_pingallfull() and do_iperfudp()

This commit is contained in:
Baohua Yang
2013-12-11 15:19:24 +08:00
parent fc7c919b43
commit 3e2333e5ed
+2 -2
View File
@@ -160,7 +160,7 @@ class CLI( Cmd ):
self.mn.pingPair()
def do_pingallfull( self, _line ):
"Ping between first two hosts, returns all ping results."
"Ping between all hosts, returns all ping results."
self.mn.pingAllFull()
def do_pingpairfull( self, _line ):
@@ -187,7 +187,7 @@ class CLI( Cmd ):
error( 'invalid number of args: iperf src dst\n' )
def do_iperfudp( self, line ):
"Simple iperf TCP test between two (optionally specified) hosts."
"Simple iperf UDP test between two (optionally specified) hosts."
args = line.split()
if not args:
self.mn.iperf( l4Type='UDP' )