From dbf866ba9c9d397174e318e698671736b2490e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Pe=C3=B1a?= Date: Tue, 21 Nov 2023 15:25:16 -0800 Subject: [PATCH] [FedCM] Rename wildcard to 'any' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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} --- credential-management/fedcm-domainhint.https.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/credential-management/fedcm-domainhint.https.html b/credential-management/fedcm-domainhint.https.html index 0397cc8677219b..3e07491d48d2f6 100644 --- a/credential-management/fedcm-domainhint.https.html +++ b/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.");