author | Rouslan Solomakhin <rouslan@google.com> |
Mon, 09 Apr 2018 18:23:15 +0000 | |
changeset 413617 | 1f19b0db444fee379265d2f6add7b2f0a4af4cfd |
parent 413616 | 9c2f3146782483b1b469d2cdd4e625cd38c6a15a |
child 413618 | 58fdcb0d3c616e2457a12bb55b968e009ba1c94f |
push id | 102161 |
push user | james@hoppipolla.co.uk |
push date | Sun, 15 Apr 2018 09:10:16 +0000 |
treeherder | mozilla-inbound@ebfad4be630d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1449406, 10203 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/web-platform/meta/MANIFEST.json +++ b/testing/web-platform/meta/MANIFEST.json @@ -583377,17 +583377,17 @@ "db68756c6cc3cc2146f608a04988cd938a2dd0de", "manual" ], "payment-request/show-method-optional-promise-rejects-manual.https.html": [ "a8dde7fa5b501688a51f23b330e4cd25273a6146", "manual" ], "payment-request/show-method-optional-promise-resolves-manual.https.html": [ - "a07f98e117bce1f040c5e62ef3acbd2ef7475338", + "a19166fd1366f8510bec53b4e9fc1033a129c44b", "manual" ], "payment-request/show-method-postmessage-iframe.html": [ "05167546e8763cb39873de4ca8f4e8e758ba0147", "support" ], "payment-request/show-method-postmessage-manual.https.html": [ "e9ca854ea9e13e7b662f0fa66890832bb2f13b69",
--- a/testing/web-platform/tests/payment-request/show-method-optional-promise-resolves-manual.https.html +++ b/testing/web-platform/tests/payment-request/show-method-optional-promise-resolves-manual.https.html @@ -176,17 +176,17 @@ function runUpdateDetailsAlgorithm( } ) { const testAssertion = buttonElement.textContent.trim(); buttonElement.disabled = true; promise_test(async t => { const request = new PaymentRequest(validMethods, failDetails, options); const detailsPromise = Promise.resolve(details); const acceptPromise = request.show(detailsPromise); - assert_equals(request.id, "this cant be changed", "id must never change."); + assert_equals(request.id, "this cannot be changed", "id must never change."); await promise_rejects( t, "AbortError", acceptPromise, "expected AbortError" ); }, testAssertion); }