Skip to content

Commit

Permalink
Merge pull request grpc#11060 from ctiller/writes_per_rpc
Browse files Browse the repository at this point in the history
Increase error threshold for too many writes
  • Loading branch information
ctiller authored May 10, 2017
2 parents 07a2f98 + 74bf087 commit 20fdddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cpp/performance/writes_per_rpc_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 20fdddd

Please sign in to comment.