| Index: third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data.html b/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data.html
|
| index c7aee32ddfae5e8fd8431d4b69e4bef96e9a3ac6..61322bd09d2b22b9d5ef62d7f35708dcd3db9388 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data.html
|
| @@ -177,15 +177,16 @@
|
| var minValue = Math.min(...expected);
|
| var maxValue = Math.max(...expected);
|
|
|
| - basicTestsPassed = Should("Min FFT value", minValue, {
|
| - brief: true
|
| - })
|
| + basicTestsPassed = Should("Order: " + options.order +
|
| + ": Min FFT value", minValue, {
|
| + brief: true
|
| + })
|
| .beLessThanOrEqualTo(analyser.minDecibels) && basicTestsPassed;
|
| - basicTestsPassed = Should("Max FFT value", maxValue, {
|
| - brief: true
|
| - })
|
| + basicTestsPassed = Should("Order: " + options.order +
|
| + ": Max FFT value", maxValue, {
|
| + brief: true
|
| + })
|
| .beGreaterThanOrEqualTo(analyser.maxDecibels) && basicTestsPassed;
|
| -
|
| // Test the byte frequency data.
|
| var byteFreqData = new Uint8Array(analyser.frequencyBinCount);
|
| var expectedByteData = new Float32Array(analyser.frequencyBinCount);
|
|
|