Commit daaa437f authored by Kenichi Ishibashi's avatar Kenichi Ishibashi Committed by Commit Bot

S13nSW: Skip ServiceWorkerTimeoutTimerTest.NonS13nServiceWorker

We should just do early return when S13nServiceWorker is on
because we want to make the flag on by default in the future.

Bug: 860361
Change-Id: I241b491f7f49e47b7cbfa5bfaeb1fab1978442db
Reviewed-on: https://chromium-review.googlesource.com/1143050Reviewed-by: default avatarMatt Falkenhagen <falken@chromium.org>
Commit-Queue: Kenichi Ishibashi <bashi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#576389}
parent bb6c0afc
...@@ -273,7 +273,8 @@ TEST_F(ServiceWorkerTimeoutTimerTest, SetIdleTimerDelayToZero) { ...@@ -273,7 +273,8 @@ TEST_F(ServiceWorkerTimeoutTimerTest, SetIdleTimerDelayToZero) {
} }
TEST_F(ServiceWorkerTimeoutTimerTest, NonS13nServiceWorker) { TEST_F(ServiceWorkerTimeoutTimerTest, NonS13nServiceWorker) {
ASSERT_FALSE(blink::ServiceWorkerUtils::IsServicificationEnabled()); if (blink::ServiceWorkerUtils::IsServicificationEnabled())
return;
MockEvent event; MockEvent event;
{ {
......
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