Unreviewed, a build fix after r245043

* http/wpt/webauthn/public-key-credential-create-success-hid.https.html:
* http/wpt/webauthn/public-key-credential-get-success-hid.https.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@245052 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index f5b8c15..737451a 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,10 @@
+2019-05-08  Jiewen Tan  <jiewen_tan@apple.com>
+
+        Unreviewed, a build fix after r245043
+
+        * http/wpt/webauthn/public-key-credential-create-success-hid.https.html:
+        * http/wpt/webauthn/public-key-credential-get-success-hid.https.html:
+
 2019-05-07  Jiewen Tan  <jiewen_tan@apple.com>
 
         [WebAuthN] A new request should always suppress the pending request if any
diff --git a/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html b/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html
index 751eee9..8437e9e 100644
--- a/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html
+++ b/LayoutTests/http/wpt/webauthn/public-key-credential-create-success-hid.https.html
@@ -188,7 +188,7 @@
             }
         };
 
-        promiseRejects(t, "NotAllowedError", navigator.credentials.create(options), "This request is suppressed by a new request.");
+        promiseRejects(t, "NotAllowedError", navigator.credentials.create(options), "This request has been voided by a new request.");
         return navigator.credentials.create(options).then(credential => {
             checkResult(credential);
         });
diff --git a/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html b/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html
index bc9894e..3421c77 100644
--- a/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html
+++ b/LayoutTests/http/wpt/webauthn/public-key-credential-get-success-hid.https.html
@@ -107,7 +107,7 @@
             }
         };
 
-        promiseRejects(t, "NotAllowedError", navigator.credentials.get(options), "This request is suppressed by a new request.");
+        promiseRejects(t, "NotAllowedError", navigator.credentials.get(options), "This request has been voided by a new request.");
         return navigator.credentials.get(options).then(credential => {
             return checkResult(credential);
         });