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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-downmix.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-downmix.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-downmix.html b/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-downmix.html
index edb1df4e915be00347540361aceaadbf2d6cde75..5148c4cb218226b5592ebff3cef9d26af06bbb66 100644
--- a/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-downmix.html
+++ b/third_party/WebKit/LayoutTests/webaudio/realtimeanalyser-downmix.html
@@ -102,9 +102,7 @@
// Verify the time domain data is correct.
var prefix = "Analyser downmix " + options.message + " to mono"
- success = Should(prefix + " time data", timeData, {
- verbose: true
- })
+ success = Should(prefix + " time data", timeData)
.beEqualToArray(renderedBuffer.getChannelData(0).subarray(0, analyser.fftSize));
var expectedTimeData = renderedBuffer.getChannelData(0).subarray(0, analyser.fftSize);

Powered by Google App Engine
This is Rietveld 408576698