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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.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/audioparam-setTargetAtTime-continuous.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.html b/third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.html
index f5bbf22ae71f1356ee709b86a9b791eac0a50ebf..37efafef355793034cd7d582aabf56ddf914d3fd 100644
--- a/third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.html
+++ b/third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.html
@@ -215,9 +215,8 @@
// Verify the ramp part of the curve
startIndex += length;
length = expected.rampPart.length;
- success = Should(prefix, result.slice(startIndex, startIndex + length), {
- verbose: true
- }).beCloseToArray(expected.rampPart, thresholdRamp) && success;
+ success = Should(prefix, result.slice(startIndex, startIndex + length))
+ .beCloseToArray(expected.rampPart, thresholdRamp) && success;
// Verify that the end of the curve after the ramp (if any) is a constant.
startIndex += length;

Powered by Google App Engine
This is Rietveld 408576698