test: relax RPCTiming rpc_time_stddev from 1ms to 2ms.

Even when given exclusive access to our buildserver it still gives
false positives with 1ms.
This commit is contained in:
whitequark 2016-07-14 10:47:42 +00:00
parent f3435cf4eb
commit b6c12f2f56
1 changed files with 1 additions and 1 deletions

View File

@ -387,4 +387,4 @@ class RPCTest(ExperimentCase):
self.execute(RPCTiming)
self.assertGreater(self.dataset_mgr.get("rpc_time_mean"), 100*ns)
self.assertLess(self.dataset_mgr.get("rpc_time_mean"), 15*ms)
self.assertLess(self.dataset_mgr.get("rpc_time_stddev"), 1*ms)
self.assertLess(self.dataset_mgr.get("rpc_time_stddev"), 2*ms)