| Index: chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
|
| diff --git a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
|
| index c89d357627c9fc2067e0712cfe9d37ef413fdbb0..0e1c7e04d2fdfa8c386b7164e4f6923aae6e705a 100644
|
| --- a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
|
| +++ b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
|
| @@ -353,7 +353,7 @@ TEST_F(EasyUnlockScreenlockStateHandlerTest, StatesWithLockedIcon) {
|
| states.push_back(ScreenlockState::PHONE_LOCKED);
|
|
|
| for (size_t i = 0; i < states.size(); ++i) {
|
| - SCOPED_TRACE(base::IntToString(i));
|
| + SCOPED_TRACE(base::SizeTToString(i));
|
| state_handler_->ChangeState(states[i]);
|
| EXPECT_TRUE(state_handler_->IsActive());
|
|
|
| @@ -469,7 +469,7 @@ TEST_F(EasyUnlockScreenlockStateHandlerTest,
|
| states.push_back(ScreenlockState::AUTHENTICATED);
|
|
|
| for (size_t i = 0; i < states.size(); ++i) {
|
| - SCOPED_TRACE(base::IntToString(i));
|
| + SCOPED_TRACE(base::SizeTToString(i));
|
| state_handler_->ChangeState(states[i]);
|
| ASSERT_TRUE(lock_handler_->HasCustomIcon());
|
| EXPECT_FALSE(lock_handler_->CustomIconHardlocksOnClick());
|
| @@ -480,7 +480,7 @@ TEST_F(EasyUnlockScreenlockStateHandlerTest,
|
| proximity_auth::ScreenlockBridge::Get()->SetLockHandler(lock_handler_.get());
|
|
|
| for (size_t i = 0; i < states.size(); ++i) {
|
| - SCOPED_TRACE(base::IntToString(i));
|
| + SCOPED_TRACE(base::SizeTToString(i));
|
| state_handler_->ChangeState(states[i]);
|
| ASSERT_TRUE(lock_handler_->HasCustomIcon());
|
| EXPECT_TRUE(lock_handler_->CustomIconHardlocksOnClick());
|
|
|