| 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));
|
| });
|
|
|
|
|