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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audioparam-automation-clamping.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-automation-clamping.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/audioparam-automation-clamping.html b/third_party/WebKit/LayoutTests/webaudio/audioparam-automation-clamping.html
index 5b9d562299f7895416dd02df3d62c0599c83cae9..fac9315b6b939e3234ccabe41e0b86dab776f5db 100644
--- a/third_party/WebKit/LayoutTests/webaudio/audioparam-automation-clamping.html
+++ b/third_party/WebKit/LayoutTests/webaudio/audioparam-automation-clamping.html
@@ -89,9 +89,9 @@
x => x != 0);
// Verify that the expected clamping range is a subset of the actual range.
- success = Should("Actual Clamp start (" + actualClampStart + ")",
+ success = Should("Actual Clamp start",
actualClampStart).beLessThanOrEqualTo(clampStartFrame) && success;
- success == Should("Actual Clamp end (" + actualClampEnd + ")",
+ success == Should("Actual Clamp end",
actualClampEnd).beGreaterThanOrEqualTo(clampEndFrame) && success;
if (success)

Powered by Google App Engine
This is Rietveld 408576698