| Index: LayoutTests/http/tests/credentialmanager/credentialscontainer-notifyfailedsignin-basics.html
|
| diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifyfailedsignin-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifyfailedsignin-basics.html
|
| index 395473981134421967d8ff70e6d7371bd7061743..be993e5542643db37137797c50e9eabdf24c9c1c 100644
|
| --- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifyfailedsignin-basics.html
|
| +++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifyfailedsignin-basics.html
|
| @@ -12,7 +12,7 @@ function stubRejectionChecker(reason) {
|
| assert_unreached("notifyFailedSignIn() should not reject, but did: " + reason);
|
| }
|
|
|
| -var local = new LocalCredential('id', 'pencil', 'name', 'https://example.com/avatar.png');
|
| +var local = new PasswordCredential('id', 'pencil', 'name', 'https://example.com/avatar.png');
|
| var federated = new FederatedCredential({
|
| 'id': 'id',
|
| 'provider': 'https://federation.test/',
|
| @@ -27,13 +27,13 @@ async_test(function () {
|
| assert_equals(reason.name, "TypeError");
|
| this.done();
|
| }));
|
| -}, "Verify the basics of notifyFailedSignIn(): LocalCredential.");
|
| +}, "Verify the basics of notifyFailedSignIn(): PasswordCredential.");
|
|
|
| async_test(function () {
|
| navigator.credentials.notifyFailedSignIn(local).then(
|
| this.step_func(stubResolverChecker.bind(this)),
|
| this.step_func(stubRejectionChecker.bind(this)));
|
| -}, "Verify the basics of notifyFailedSignIn(): LocalCredential.");
|
| +}, "Verify the basics of notifyFailedSignIn(): PasswordCredential.");
|
|
|
| async_test(function () {
|
| navigator.credentials.notifyFailedSignIn(federated).then(
|
|
|