Commit adfed495 authored by Balazs Engedy's avatar Balazs Engedy Committed by Commit Bot

Fix AuthenticatorBleEnterPairingModeSheetModel.

String no longer contains a placeholder, do not try to substitute one.

Bug: 875531
Change-Id: I53acc969a58a270ed14011b37177329bbcaaf644
TBR: hongjunchoi@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/1180898Reviewed-by: default avatarBalazs Engedy <engedy@chromium.org>
Commit-Queue: Balazs Engedy <engedy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#584393}
parent 79aef335
......@@ -110,9 +110,8 @@ IN_PROC_BROWSER_TEST_F(AuthenticatorDialogTest, InvokeUi_ble_pairing_begin) {
ShowAndVerifyUi();
}
// Disabled because flaky on bots. http://crbug.com/875531.
IN_PROC_BROWSER_TEST_F(AuthenticatorDialogTest,
DISABLE_InvokeUi_ble_enter_pairing_mode) {
InvokeUi_ble_enter_pairing_mode) {
ShowAndVerifyUi();
}
......
......@@ -245,11 +245,7 @@ AuthenticatorBleEnterPairingModeSheetModel::GetStepIllustration() const {
base::string16 AuthenticatorBleEnterPairingModeSheetModel::GetStepTitle()
const {
// TODO(hongjunchoi): Insert actual domain name from model to
// |application_name|.
base::string16 application_name = base::UTF8ToUTF16("example.com");
return l10n_util::GetStringFUTF16(IDS_WEBAUTHN_BLE_ENTER_PAIRING_MODE_TITLE,
application_name);
return l10n_util::GetStringUTF16(IDS_WEBAUTHN_BLE_ENTER_PAIRING_MODE_TITLE);
}
base::string16 AuthenticatorBleEnterPairingModeSheetModel::GetStepDescription()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment