| Index: chrome/common/extensions/extension_unittest.cc
 | 
| diff --git a/chrome/common/extensions/extension_unittest.cc b/chrome/common/extensions/extension_unittest.cc
 | 
| index 09b320be9918ead97b0eb93755d4eb4209effa6d..fb40330e0f93ee172b7b698a761c29c111f2d55f 100644
 | 
| --- a/chrome/common/extensions/extension_unittest.cc
 | 
| +++ b/chrome/common/extensions/extension_unittest.cc
 | 
| @@ -293,7 +293,7 @@ TEST(ExtensionTest, LoadPageActionHelper) {
 | 
|    DictionaryValue input;
 | 
|  
 | 
|    // First try with an empty dictionary. We should get nothing back.
 | 
| -  ASSERT_TRUE(NULL == extension.LoadPageActionHelper(&input, 0, &error_msg));
 | 
| +  ASSERT_EQ(NULL, extension.LoadPageActionHelper(&input, 0, &error_msg));
 | 
|    ASSERT_STRNE("", error_msg.c_str());
 | 
|    error_msg = "";
 | 
|  
 | 
| 
 |