| Index: chrome/test/data/devtools/target_list/background.js
|
| diff --git a/chrome/test/data/devtools/target_list/background.js b/chrome/test/data/devtools/target_list/background.js
|
| index 60a6ca072c988215a837529dee7f90968daecd00..607f1e55d7f1db3693eb46271583a3d5fff710e3 100644
|
| --- a/chrome/test/data/devtools/target_list/background.js
|
| +++ b/chrome/test/data/devtools/target_list/background.js
|
| @@ -32,7 +32,7 @@ function checkTarget(targets, url, type, opt_title, opt_faviconUrl) {
|
| target.devtoolsFrontendUrl);
|
| // On some platforms (e.g. Chrome OS) target.faviconUrl might be empty for
|
| // a freshly created tab. Ignore the check then.
|
| - if (target.faviconUrl && opt_faviconUrl)
|
| + if (target.faviconUrl)
|
| chrome.test.assertEq(opt_faviconUrl, target.faviconUrl);
|
| // Sometimes thumbnailUrl is not available for a freshly loaded tab.
|
| if (target.thumbnailUrl)
|
| @@ -56,8 +56,7 @@ chrome.test.runTests([
|
| chrome.extension.getURL('favicon.png'));
|
| checkTarget(targets,
|
| chrome.extension.getURL('_generated_background_page.html'),
|
| - 'background_page',
|
| - 'Remote Debugger Test');
|
| + 'other');
|
|
|
| chrome.test.succeed();
|
| });
|
|
|