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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/Panner/panner-automation-basic.html

Issue 2768983002: Fix duplicate test names in WebAudio tests (Closed)
Patch Set: Created 3 years, 9 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/panner-automation-basic.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/Panner/panner-automation-basic.html b/third_party/WebKit/LayoutTests/webaudio/Panner/panner-automation-basic.html
index fd4b9fc562c751413a97502a870277e2ad285d83..2b28607fa70e9cad6d03cfe724da65d0a598a45a 100644
--- a/third_party/WebKit/LayoutTests/webaudio/Panner/panner-automation-basic.html
+++ b/third_party/WebKit/LayoutTests/webaudio/Panner/panner-automation-basic.html
@@ -229,12 +229,12 @@
success = Should(message + ".value frame " + middle + "channel 0",
data0.slice(suspendFrame))
.beConstantValueOf(data0[suspendFrame]) && success;
- success = Should(message + ".value frame " + middle + "channel 0",
+ success = Should(message + ".value frame " + middle + "channel 1",
data1.slice(suspendFrame))
.beConstantValueOf(data1[suspendFrame]) && success;
- success = Should("Output at frame " + suspendFrame + " channel 0", data0[suspendFrame])
+ success = Should(message + ": Output at frame " + suspendFrame + " channel 0", data0[suspendFrame])
.notBeEqualTo(data0[0]) && success;
- success = Should("Output at frame " + suspendFrame + " channel 1", data1[suspendFrame])
+ success = Should(message + ": Output at frame " + suspendFrame + " channel 1", data1[suspendFrame])
.notBeEqualTo(data1[0]) && success;
var prefix = "Directly setting " + message + ".value";

Powered by Google App Engine
This is Rietveld 408576698