diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-01-29 01:43:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 01:43:40 -0500 |
commit | 7e4d0534c3dcb54a6721c24ecae91942b019daaa (patch) | |
tree | 047f53430a0f037d7b5d3a144c1c39dce311d5ea /tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js | |
parent | 271a30f22f741afa6e036e4c45fff078dacf5e84 (diff) | |
parent | 81d0cdbb2cc73a263740569138ef2a67aa0cd106 (diff) | |
download | servo-7e4d0534c3dcb54a6721c24ecae91942b019daaa.tar.gz servo-7e4d0534c3dcb54a6721c24ecae91942b019daaa.zip |
Auto merge of #25631 - servo-wpt-sync:wpt_update_28-01-2020, r=servo-wpt-sync
Sync WPT with upstream (28-01-2020)
Automated downstream sync of changes from upstream as of 28-01-2020.
[no-wpt-sync]
r? @servo-wpt-sync
Diffstat (limited to 'tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js')
-rw-r--r-- | tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js b/tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js index 2e1c53fdea8..516025135b0 100644 --- a/tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js +++ b/tests/wpt/web-platform-tests/streams/readable-byte-streams/construct-byob-request.any.js @@ -49,7 +49,7 @@ function runTests(ReadableStreamBYOBRequest) { const view = createDummyObject(Uint8Array.prototype, viewType, () => new Uint8Array(16)); test(() => { assert_throws_js(TypeError, () => new ReadableStreamBYOBRequest(controller, view), - 'constructor should throw'); + 'constructor should throw'); }, `ReadableStreamBYOBRequest constructor should throw when passed a ${controllerType} ` + `ReadableByteStreamController and a ${viewType} view`); } |