diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_bfd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_bfd.py b/test/test_bfd.py index c1095d226a3..87a5ea4b1f0 100644 --- a/test/test_bfd.py +++ b/test/test_bfd.py @@ -268,7 +268,7 @@ class BFDTestCase(VppTestCase): count += 1 except: pass - self.assert_equal(count, 1, "number of packets received") + self.assert_in_range(count, 0, 1, "number of packets received") if __name__ == '__main__': |