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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/panner-automation-position.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/panner-automation-position.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html b/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
index 34e3b21501e2095c3952b4cc1dd1b2550319a2fb..56fad3232d722225fc05e40aa98f3b15a30ebd54 100644
--- a/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
+++ b/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
@@ -251,13 +251,9 @@
if (options.errorThreshold)
errorThreshold = options.errorThreshold[channelCount - 1]
- Should(prefix + "distanceModel: " + info + ", left channel", data0, {
- verbose: true
- })
+ Should(prefix + "distanceModel: " + info + ", left channel", data0)
.beCloseToArray(expected0, errorThreshold);
- Should(prefix + "distanceModel: " + info + ", right channel", data1, {
- verbose: true
- })
+ Should(prefix + "distanceModel: " + info + ", right channel", data1)
.beCloseToArray(expected1, errorThreshold);
});
}

Powered by Google App Engine
This is Rietveld 408576698