| Index: third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/response-stream-construction.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/response-stream-construction.js b/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/response-stream-construction.js
|
| index 40b4da7868b0d7117c9d661c145451c5602bddb7..86d51ba2d22bb5e019de10a92ee7d590adb206e7 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/response-stream-construction.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/response-stream-construction.js
|
| @@ -11,8 +11,7 @@ test(() => {
|
| var stream = new ReadableStream({start: c => controller = c});
|
|
|
| var response = new Response(stream);
|
| - // TODO(yhirano): This should be assert_equals.
|
| - assert_not_equals(response.body, stream);
|
| + assert_equals(response.body, stream);
|
| }, 'Response constructed with a stream');
|
|
|
| promise_test(() => {
|
|
|