Bug 1616681 [wpt PR 21886] - Fix typo in error message: promise_reject(s)_js, a=testonly

Automatic update from web-platform-tests
Fix typo in error message: promise_reject(s)_js (#21886)

--

wpt-commits: de9fa20a3f15ccd89732a49077554da19d7ca40c
wpt-pr: 21886
This commit is contained in:
Robert Ma 2020-02-21 21:58:10 +00:00 коммит произвёл moz-wptsync-bot
Родитель c759129ff7
Коммит 34a315d7f0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -641,7 +641,7 @@ policies and contribution forms [3].
function promise_rejects_js(test, constructor, promise, description) {
return promise.then(test.unreached_func("Should have rejected: " + description)).catch(function(e) {
assert_throws_js_impl(constructor, function() { throw e },
description, "promise_reject_js");
description, "promise_rejects_js");
});
}