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

Unified Diff: LayoutTests/http/tests/fetch/script-tests/stream-reader.js

Issue 1001233002: Streams Implementation Update: Reader name and Stream methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: LayoutTests/http/tests/fetch/script-tests/stream-reader.js
diff --git a/LayoutTests/http/tests/fetch/script-tests/stream-reader.js b/LayoutTests/http/tests/fetch/script-tests/stream-reader.js
index a080424788cb60d98659f312836b6f88ab1ab64e..86d5b413061abe315888828c15f1c61d12f893d4 100644
--- a/LayoutTests/http/tests/fetch/script-tests/stream-reader.js
+++ b/LayoutTests/http/tests/fetch/script-tests/stream-reader.js
@@ -56,13 +56,10 @@ sequential_promise_test(function(t) {
return wait_until_readable(reader);
}).then(function() {
assert_equals(reader.state, 'readable');
- assert_equals(stream.state, 'waiting');
reader.releaseLock();
assert_equals(reader.state, 'closed');
- assert_equals(stream.state, 'readable');
var another = stream.getReader();
assert_equals(reader.state, 'closed');
- assert_equals(stream.state, 'waiting');
assert_equals(another.state, 'readable');
});
}, 'ExclusiveStreamReader state masking');

Powered by Google App Engine
This is Rietveld 408576698