Skip to content
Snippets Groups Projects
Commit 74bf087e authored by Craig Tiller's avatar Craig Tiller
Browse files

Increase error threshold for too many writes

parent 07a2f98e
No related branches found
No related tags found
No related merge requests found
...@@ -254,8 +254,8 @@ TEST(WritesPerRpcTest, UnaryPingPong) { ...@@ -254,8 +254,8 @@ TEST(WritesPerRpcTest, UnaryPingPong) {
EXPECT_LT(UnaryPingPong(0, 0), 2.05); EXPECT_LT(UnaryPingPong(0, 0), 2.05);
EXPECT_LT(UnaryPingPong(1, 0), 2.05); EXPECT_LT(UnaryPingPong(1, 0), 2.05);
EXPECT_LT(UnaryPingPong(0, 1), 2.05); EXPECT_LT(UnaryPingPong(0, 1), 2.05);
EXPECT_LT(UnaryPingPong(4096, 0), 2.2); EXPECT_LT(UnaryPingPong(4096, 0), 2.5);
EXPECT_LT(UnaryPingPong(0, 4096), 2.2); EXPECT_LT(UnaryPingPong(0, 4096), 2.5);
} }
} // namespace testing } // namespace testing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment