| Index: chrome/test/data/extensions/api_test/stubs/content_script.js
 | 
| diff --git a/chrome/test/data/extensions/api_test/stubs/content_script.js b/chrome/test/data/extensions/api_test/stubs/content_script.js
 | 
| index fde6fa8402ec63580bcdaf0ad569d2da5ca6563e..8c8d499e34551c266b05a6979ef5473c1391a5f5 100644
 | 
| --- a/chrome/test/data/extensions/api_test/stubs/content_script.js
 | 
| +++ b/chrome/test/data/extensions/api_test/stubs/content_script.js
 | 
| @@ -66,7 +66,8 @@ function testPath(path, expectError) {
 | 
|        try {
 | 
|          module = module[parts[i]];
 | 
|        } catch (err) {
 | 
| -        logToConsoleAndStdout("testPath failed on subcomponent of " + path);
 | 
| +        logToConsoleAndStdout("testPath failed on " +
 | 
| +                              parts.slice(0, i+1).join('.') + '(' + err + ')');
 | 
|          return false;
 | 
|        }
 | 
|      } else {
 | 
| 
 |