test: relax test_rpc_timing: rpc_time_mean <2ms → <3ms.

This commit is contained in:
whitequark 2017-03-31 20:41:40 +00:00
parent 7ec14f26c2
commit 8b98e1ea6d
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ class RPCTest(ExperimentCase):
rpc_time_mean = self.dataset_mgr.get("rpc_time_mean")
print(rpc_time_mean)
self.assertGreater(rpc_time_mean, 100*ns)
self.assertLess(rpc_time_mean, 2*ms)
self.assertLess(rpc_time_mean, 3*ms)
self.assertLess(self.dataset_mgr.get("rpc_time_stddev"), 1*ms)