| Index: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-lowshelf.html | 
| diff --git a/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-lowshelf.html b/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-lowshelf.html | 
| index f1111499875d7fd43df7fab0fb4edbeb74737c15..09aee1f43324068d48a9084be4b426610106af27 100644 | 
| --- a/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-lowshelf.html | 
| +++ b/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-lowshelf.html | 
| @@ -14,8 +14,10 @@ | 
| <script> | 
| let audit = Audit.createTaskRunner(); | 
|  | 
| -audit.define("test", function (task, should) { | 
| -    task.describe("Biquad lowshelf filter"); | 
| +audit.define({ | 
| +  label: "test", | 
| +  description: "Biquad lowshelf filter" | 
| +}, function (task, should) { | 
|  | 
| // Create offline audio context. | 
| let context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate); | 
|  |