Index: base/mac/mac_util_unittest.mm |
diff --git a/base/mac/mac_util_unittest.mm b/base/mac/mac_util_unittest.mm |
index dd860a66872930868b8dd12e856c57d50101696f..04f8ddf1b60d44cdadae633378a06ea8f4be73a3 100644 |
--- a/base/mac/mac_util_unittest.mm |
+++ b/base/mac/mac_util_unittest.mm |
@@ -121,21 +121,6 @@ TEST_F(MacUtilTest, TestExcludeFileFromBackups) { |
EXPECT_FALSE(excluded_by_path); |
} |
-TEST_F(MacUtilTest, TestGetValueFromDictionary) { |
- ScopedCFTypeRef<CFMutableDictionaryRef> dict( |
- CFDictionaryCreateMutable(0, 0, |
- &kCFTypeDictionaryKeyCallBacks, |
- &kCFTypeDictionaryValueCallBacks)); |
- CFDictionarySetValue(dict.get(), CFSTR("key"), CFSTR("value")); |
- |
- EXPECT_TRUE(CFEqual(CFSTR("value"), |
- GetValueFromDictionary( |
- dict, CFSTR("key"), CFStringGetTypeID()))); |
- EXPECT_FALSE(GetValueFromDictionary(dict, CFSTR("key"), CFNumberGetTypeID())); |
- EXPECT_FALSE(GetValueFromDictionary( |
- dict, CFSTR("no-exist"), CFStringGetTypeID())); |
-} |
- |
TEST_F(MacUtilTest, CopyNSImageToCGImage) { |
scoped_nsobject<NSImage> nsImage( |
[[NSImage alloc] initWithSize:NSMakeSize(20, 20)]); |