X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_neighbor.py;h=d551c94584a5ecbaa727f3dd6d01caa42341f9b9;hb=3d2df215bf1de516ffbd8ee3815091ca3c3a492f;hp=67424048797403891d328f292bd1ed19c4c9c0ea;hpb=6221927e9bad39c2856e844f8bc38947cb447f73;p=vpp.git diff --git a/test/test_neighbor.py b/test/test_neighbor.py index 67424048797..d551c94584a 100644 --- a/test/test_neighbor.py +++ b/test/test_neighbor.py @@ -1350,7 +1350,7 @@ class ARPTestCase(VppTestCase): # how many we get is going to be dependent on the time for packet # processing but it should be small # - self.assertTrue(len(rx) < 64) + self.assertLess(len(rx), 64) # # IPv6/ND @@ -1378,7 +1378,7 @@ class ARPTestCase(VppTestCase): # how many we get is going to be dependent on the time for packet # processing but it should be small # - self.assertTrue(len(rx) < 64) + self.assertLess(len(rx), 64) class NeighborStatsTestCase(VppTestCase):