Update test_simpleperf.py

Add spaces.
This commit is contained in:
lantz
2014-01-28 15:21:48 -08:00
parent f2942a7f92
commit a722a3a110
+2 -2
View File
@@ -24,7 +24,7 @@ class testSimplePerf( unittest.TestCase ):
# check ping results # check ping results
p.expect( "Results: (\d+)% dropped", timeout=120 ) p.expect( "Results: (\d+)% dropped", timeout=120 )
loss = int( p.match.group( 1 ) ) loss = int( p.match.group( 1 ) )
self.assertTrue(0 < loss < 100) self.assertTrue( 0 < loss < 100 )
# check iperf results # check iperf results
p.expect( "Results: \['([\d\.]+) .bits/sec", timeout=480 ) p.expect( "Results: \['([\d\.]+) .bits/sec", timeout=480 )
bw = float( p.match.group( 1 ) ) bw = float( p.match.group( 1 ) )
@@ -46,7 +46,7 @@ class testSimplePerf( unittest.TestCase ):
m = re.search( expectStr, output ) m = re.search( expectStr, output )
loss = int( m.group( 3 ) ) loss = int( m.group( 3 ) )
net.stop() net.stop()
self.assertTrue(0 < loss < 100) self.assertTrue( 0 < loss < 100 )
if __name__ == '__main__': if __name__ == '__main__':
setLogLevel( 'warning' ) setLogLevel( 'warning' )