aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-05-10 08:11:09 -0700
committerGravatar GitHub <noreply@github.com>2017-05-10 08:11:09 -0700
commit20fdddd9a8eb2c180903e94547adc000dabd04de (patch)
tree901a7c0e4ce50d8ca2b99ad9787235c23b15d28b
parent07a2f98e6b2d3f288cf76ff4f0910b92d5f71075 (diff)
parent74bf087e9c28a6cb6ee654990eae71df87332aba (diff)
Merge pull request #11060 from ctiller/writes_per_rpc
Increase error threshold for too many writes
-rw-r--r--test/cpp/performance/writes_per_rpc_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/performance/writes_per_rpc_test.cc b/test/cpp/performance/writes_per_rpc_test.cc
index 7a914c1547..12d8268330 100644
--- a/test/cpp/performance/writes_per_rpc_test.cc
+++ b/test/cpp/performance/writes_per_rpc_test.cc
@@ -254,8 +254,8 @@ TEST(WritesPerRpcTest, UnaryPingPong) {
EXPECT_LT(UnaryPingPong(0, 0), 2.05);
EXPECT_LT(UnaryPingPong(1, 0), 2.05);
EXPECT_LT(UnaryPingPong(0, 1), 2.05);
- EXPECT_LT(UnaryPingPong(4096, 0), 2.2);
- EXPECT_LT(UnaryPingPong(0, 4096), 2.2);
+ EXPECT_LT(UnaryPingPong(4096, 0), 2.5);
+ EXPECT_LT(UnaryPingPong(0, 4096), 2.5);
}
} // namespace testing