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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html

Issue 2611823002: Fix flaky automatic-pull-node test (Closed)
Patch Set: Use anon functions Created 3 years, 12 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: third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html b/third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html
index 840bad87a246b589c2894d51f803587ea8fe99e6..1772d72ddaa1a67b73e6a06650235e1be0417963 100644
--- a/third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html
+++ b/third_party/WebKit/LayoutTests/webaudio/Analyser/automatic-pull-node.html
@@ -63,7 +63,9 @@ audit.define("test1", function (task, should) {
bufferSource.start(0);
context.startRendering()
- .then(test1Finished(should))
+ .then(function () {
+ test1Finished(should);
+ })
.then(task.done.bind(task));
});
@@ -88,7 +90,9 @@ audit.define("test2", function (task, should) {
bufferSource.start(0);
context.startRendering()
- .then(test2Finished(should))
+ .then(function () {
+ test2Finished(should);
+ })
.then(task.done.bind(task));
});
@@ -113,7 +117,9 @@ audit.define("test3", function (task, should) {
bufferSource.start(0);
context.startRendering()
- .then(test3Finished(should))
+ .then(function () {
+ test3Finished(should);
+ })
.then(task.done.bind(task));
});
« 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