diff options
-rw-r--r-- | chrome/common/pref_service_unittest.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/pref_service_unittest.cc b/chrome/common/pref_service_unittest.cc index a95455a..48b707a 100644 --- a/chrome/common/pref_service_unittest.cc +++ b/chrome/common/pref_service_unittest.cc @@ -82,7 +82,8 @@ class TestPrefObserver : public NotificationObserver { } // anonymous namespace // This test is disabled. See issue 8339. -TEST_F(PrefServiceTest, DISABLED_Basic) { +#if 0 +TEST_F(PrefServiceTest, Basic) { PrefService prefs; // Test that it fails on nonexistent file. @@ -137,6 +138,7 @@ TEST_F(PrefServiceTest, DISABLED_Basic) { ASSERT_TRUE(file_util::PathExists(golden_output_file)); ASSERT_TRUE(file_util::ContentsEqual(golden_output_file, output_file)); } +#endif TEST_F(PrefServiceTest, Overlay) { const std::string transient = |