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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-freq-data-smoothing.html

Issue 2072313002: Replace verbose option with brief option for Should(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust message for default verbose output. Created 4 years, 6 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
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));

Powered by Google App Engine
This is Rietveld 408576698