Browse Source

[2353] Don't check an upper bound on number of attempts

Mukund Sivaraman 12 years ago
parent
commit
8cb9e9efb9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/bin/bind10/tests/bind10_test.py.in

+ 1 - 2
src/bin/bind10/tests/bind10_test.py.in

@@ -1620,9 +1620,8 @@ class TestBossComponents(unittest.TestCase):
         # We just check that an exception was thrown, and that several
         # attempts were made to connect.
         self.assertTrue(thrown)
-        # 1 second of attempts every 0.1 seconds should result in at least 5 attempts, but less than 15
+        # 1 second of attempts every 0.1 seconds should result in at least 5 attempts
         self.assertGreater(attempts, 5)
-        self.assertLess(attempts, 15)
 
     def test_start_cfgmgr(self):
         '''Test that b10-cfgmgr is started.'''