Increase scratchnet timeout to see if it's just slow.

This commit is contained in:
Bob Lantz
2016-08-22 23:18:13 -07:00
parent 238ffe64a7
commit 1eb6f65e40
+1 -1
View File
@@ -14,7 +14,7 @@ class testScratchNet( unittest.TestCase ):
def pingTest( self, name ):
"Verify that no ping packets were dropped"
p = pexpect.spawn( 'python -m %s' % name )
index = p.expect( self.opts )
index = p.expect( self.opts, timeout=120 )
self.assertEqual( index, 0 )
def testPingKernel( self ):