Commit ad12edee authored by Robert Ogden's avatar Robert Ogden Committed by Commit Bot

Fix timeout flake from last CL

Bug: 907665
Change-Id: I07737f4e4dee8c28741dc63016eb376604c21723
Reviewed-on: https://chromium-review.googlesource.com/c/1346996Reviewed-by: default avatarGayane Petrosyan <gayane@chromium.org>
Reviewed-by: default avatarTarun Bansal <tbansal@chromium.org>
Commit-Queue: Robert Ogden <robertogden@chromium.org>
Commit-Queue: Tarun Bansal <tbansal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#610279}
parent 7193c9fa
...@@ -1021,7 +1021,8 @@ IN_PROC_BROWSER_TEST_F(PreviewsLitePageServerTimeoutBrowserTest, ...@@ -1021,7 +1021,8 @@ IN_PROC_BROWSER_TEST_F(PreviewsLitePageServerTimeoutBrowserTest,
max_penalty = bucket.min; max_penalty = bucket.min;
} }
} }
EXPECT_GE(max_penalty, kTimeoutMs); // |kTimeoutMs| is flaky, so use something slightly less.
EXPECT_GE(max_penalty, kTimeoutMs - 50);
} }
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment