| Index: third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html b/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html
|
| index 956443338931bd3851de591d195344248e9f7711..10bbed37ca23506b7075f91d7aa9d666f1235049 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html
|
| @@ -72,9 +72,8 @@
|
| var expectedByteData = convertFloatToByte(smoothedFloatResult.map(linearToDb),
|
| analyser.minDecibels, analyser.maxDecibels);
|
|
|
| - success = Should(analyser.fftSize + "-point byte FFT", byteFreqData, {
|
| - verbose: true
|
| - }).beCloseToArray(expectedByteData, 0) && success;
|
| + success = Should(analyser.fftSize + "-point byte FFT", byteFreqData)
|
| + .beCloseToArray(expectedByteData, 0) && success;
|
|
|
| }).then(context.resume.bind(context));
|
|
|
| @@ -111,9 +110,8 @@
|
| var expectedByteData = convertFloatToByte(smoothedFloatResult.map(linearToDb),
|
| analyser.minDecibels, analyser.maxDecibels);
|
|
|
| - success = Should(analyser.fftSize + "-point byte FFT", byteFreqData, {
|
| - verbose: true
|
| - }).beCloseToArray(expectedByteData, 0) && success;
|
| + success = Should(analyser.fftSize + "-point byte FFT", byteFreqData)
|
| + .beCloseToArray(expectedByteData, 0) && success;
|
|
|
| }).then(context.resume.bind(context));
|
|
|
|
|