Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1371)

Unified Diff: Source/core/workers/WorkerThreadTest.cpp

Issue 1154283004: Fix WorkerThreadTest.GcOccursWhileIdle. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: AtLeast Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerThreadTest.cpp
diff --git a/Source/core/workers/WorkerThreadTest.cpp b/Source/core/workers/WorkerThreadTest.cpp
index f0e7725a9f4825755b092979da7275632736e04c..1e8402d8502f7ea7942b51cdb75050a0d14f4733 100644
--- a/Source/core/workers/WorkerThreadTest.cpp
+++ b/Source/core/workers/WorkerThreadTest.cpp
@@ -232,7 +232,7 @@ TEST_F(WorkerThreadTest, GcOccursWhileIdle)
return false;
}));
- EXPECT_CALL(*m_workerThread, doIdleGc(_)).Times(1);
+ EXPECT_CALL(*m_workerThread, doIdleGc(_)).Times(testing::AtLeast(1));
startAndWaitForInit();
postWakeUpTask(500ul);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698