Fix comparison error in testWalkthrough.testHostCommands (#1168)

This commit is contained in:
lantz
2023-04-21 18:07:53 -07:00
committed by GitHub
parent cf5675876c
commit 4707e90028
+1 -1
View File
@@ -131,7 +131,7 @@ class testWalkthrough( unittest.TestCase ):
ifcount += 1
else:
break
self.assertTrue( ifcount <= 3, 'Missing interfaces on s1')
self.assertTrue( ifcount >= 3, 'Missing interfaces on s1')
# h1 ps
p.sendline( "h1 ps -a | egrep -v 'ps|grep'" )
p.expect( self.prompt )