| Index: chrome/test/data/local_ntp_browsertest.js
|
| diff --git a/chrome/test/data/local_ntp_browsertest.js b/chrome/test/data/local_ntp_browsertest.js
|
| index f05f870bc3eb24f015db013d682ebeb800a9b9ac..d52b6c41be59702c6b0dc4a457052ee4998a2ebe 100644
|
| --- a/chrome/test/data/local_ntp_browsertest.js
|
| +++ b/chrome/test/data/local_ntp_browsertest.js
|
| @@ -69,7 +69,7 @@ function runTests() {
|
| * Tests that Google NTPs show a fakebox and logo.
|
| */
|
| function testShowsFakeboxAndLogoIfGoogle() {
|
| - var localNTP = LocalNTP({href: 'isGoogle'});
|
| + var localNTP = LocalNTP({isGooglePage: true});
|
| localNTP.init();
|
| assert($('fakebox'));
|
| assert($('logo'));
|
| @@ -80,7 +80,7 @@ function testShowsFakeboxAndLogoIfGoogle() {
|
| * Tests that non-Google NTPs do not show a fakebox.
|
| */
|
| function testDoesNotShowFakeboxIfNotGoogle() {
|
| - var localNTP = LocalNTP({href: ''});
|
| + var localNTP = LocalNTP({isGooglePage: false});
|
| localNTP.init();
|
| assert(!$('fakebox'));
|
| assert(!$('logo'));
|
|
|