| Index: chrome/browser/importer/firefox_importer_unittest.cc
|
| diff --git a/chrome/browser/importer/firefox_importer_unittest.cc b/chrome/browser/importer/firefox_importer_unittest.cc
|
| index 151c93496c63883fdb5816860e5d8271d6acaf4c..8c8b9fae6672011da67db408d38b21d060fbdec4 100644
|
| --- a/chrome/browser/importer/firefox_importer_unittest.cc
|
| +++ b/chrome/browser/importer/firefox_importer_unittest.cc
|
| @@ -498,7 +498,7 @@ TEST_F(FirefoxProfileImporterTest, MAYBE_IMPORTER(Firefox35Importer)) {
|
| TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
|
| base::FilePath nss_path;
|
| ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
|
| -#ifdef OS_MACOSX
|
| +#if defined(OS_MACOSX)
|
| nss_path = nss_path.AppendASCII("firefox2_nss_mac");
|
| #else
|
| nss_path = nss_path.AppendASCII("firefox2_nss");
|
| @@ -523,7 +523,7 @@ TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
|
| TEST(FirefoxImporterTest, MAYBE_NSS(Firefox3NSS3Decryptor)) {
|
| base::FilePath nss_path;
|
| ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
|
| -#ifdef OS_MACOSX
|
| +#if defined(OS_MACOSX)
|
| nss_path = nss_path.AppendASCII("firefox3_nss_mac");
|
| #else
|
| nss_path = nss_path.AppendASCII("firefox3_nss");
|
|
|