| Index: chrome/browser/chromeos/login/quick_unlock/fingerprint_storage_unittest.cc
|
| diff --git a/chrome/browser/chromeos/login/quick_unlock/fingerprint_storage_unittest.cc b/chrome/browser/chromeos/login/quick_unlock/fingerprint_storage_unittest.cc
|
| index 5b0b97f3be6c130a239daaf1d8d1dfc11379e1a8..26aa72de98c2dbbc56a2e9eb937791ecbc5e0871 100644
|
| --- a/chrome/browser/chromeos/login/quick_unlock/fingerprint_storage_unittest.cc
|
| +++ b/chrome/browser/chromeos/login/quick_unlock/fingerprint_storage_unittest.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "chrome/browser/chromeos/login/quick_unlock/fingerprint_storage.h"
|
| #include "chrome/browser/chromeos/login/quick_unlock/quick_unlock_factory.h"
|
| #include "chrome/browser/chromeos/login/quick_unlock/quick_unlock_storage.h"
|
| #include "chrome/browser/chromeos/login/quick_unlock/quick_unlock_utils.h"
|
| @@ -20,7 +21,9 @@ class FingerprintStorageUnitTest : public testing::Test {
|
| ~FingerprintStorageUnitTest() override {}
|
|
|
| // testing::Test:
|
| - void SetUp() override { quick_unlock::EnableForTesting(); }
|
| + void SetUp() override {
|
| + quick_unlock::EnableForTesting(quick_unlock::PinStorageType::kPrefs);
|
| + }
|
|
|
| content::TestBrowserThreadBundle thread_bundle_;
|
| std::unique_ptr<TestingProfile> profile_;
|
|
|