From 1fe2c9ee60d42eae421c948293fa6723a17845d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Pe=C3=B1a?= Date: Thu, 23 Nov 2023 08:50:58 +0000 Subject: [PATCH] Bug 1865944 [wpt PR 43297] - [FedCM] Rename wildcard to 'any', a=testonly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automatic update from web-platform-tests [FedCM] Rename wildcard to 'any' Bug: 1440178 Change-Id: Ib6544747e6000b4ce45e6252d7288635c040046f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5049408 Reviewed-by: Yi Gu Commit-Queue: Yi Gu Commit-Queue: Nicolás Peña Auto-Submit: Nicolás Peña Cr-Commit-Position: refs/heads/main@{#1227658} -- wpt-commits: dbf866ba9c9d397174e318e698671736b2490e3c wpt-pr: 43297 --- .../tests/credential-management/fedcm-domainhint.https.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/web-platform/tests/credential-management/fedcm-domainhint.https.html b/testing/web-platform/tests/credential-management/fedcm-domainhint.https.html index 0397cc8677219..3e07491d48d2f 100644 --- a/testing/web-platform/tests/credential-management/fedcm-domainhint.https.html +++ b/testing/web-platform/tests/credential-management/fedcm-domainhint.https.html @@ -49,10 +49,10 @@ fedcm_test(async t => { let options = request_options_with_domain_hint( - 'manifest_with_two_accounts.json', '*'); + 'manifest_with_two_accounts.json', 'any'); await select_manifest(t, options); const cred = await fedcm_get_and_select_first_account(t, options); assert_equals(cred.token, 'account_id=john_doe'); -}, "Domain hint '*' matches an account with any domain hint."); +}, "Domain hint 'any' matches an account with any domain hint.");