diff --git a/os_brick/tests/privileged/test_rootwrap.py b/os_brick/tests/privileged/test_rootwrap.py index cc48f6282..2d94a5a2e 100644 --- a/os_brick/tests/privileged/test_rootwrap.py +++ b/os_brick/tests/privileged/test_rootwrap.py @@ -98,7 +98,7 @@ class PrivRootwrapTestCase(base.TestCase): interval=2, backoff_rate=3, attempts=3, on_execute=on_execute, on_completion=on_completion) t1 = time.time() - self.assertLess(t1 - t0, 0.3) + self.assertLess(t1 - t0, 0.6) sleep_mock.assert_has_calls([mock.call(0), mock.call(6), mock.call(0), mock.call(18), mock.call(0)]) expected_calls = [mock.call(args[0][0])