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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-suspend-resume.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/AudioContext/audiocontext-suspend-resume.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-suspend-resume.html b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-suspend-resume.html
index a79e6a999b3ad8ebec94d3160299ef8843253b2c..bbf470f6d459edc74ac9065faa14535b271696c6 100644
--- a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-suspend-resume.html
+++ b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-suspend-resume.html
@@ -79,7 +79,7 @@
.beTrue();
// Resume doesn't actually resume an offline context
- should(offlineContext.state, "offlineContext.state")
+ should(offlineContext.state, "After resume, offlineContext.state")
.beEqualTo("suspended");
should(p2, "p2")
.beRejected()
@@ -101,7 +101,7 @@
.notThrow();
p3.then(() => {
- should(offlineContext.state, "offlineContext.state")
+ should(offlineContext.state, "After close, offlineContext.state")
.beEqualTo("closed");
// suspend() should be rejected on a closed context.

Powered by Google App Engine
This is Rietveld 408576698