| Index: chrome/browser/resources/google_now/background_test_util.js
|
| diff --git a/chrome/browser/resources/google_now/background_test_util.js b/chrome/browser/resources/google_now/background_test_util.js
|
| index 7f6e4aa0d2142253ca7b4cb1f995a6e7020c5e7f..39b9458026d2a278ca5bea72d82f0c223515bec0 100644
|
| --- a/chrome/browser/resources/google_now/background_test_util.js
|
| +++ b/chrome/browser/resources/google_now/background_test_util.js
|
| @@ -7,9 +7,7 @@
|
| var wrapper = {instrumentChromeApiFunction: emptyMock};
|
|
|
| function buildAuthenticationManager() {
|
| - return {
|
| - addListener: emptyMock
|
| - };
|
| + return {addListener: emptyMock};
|
| }
|
|
|
| var instrumentApiFunction = emptyMock;
|
| @@ -29,4 +27,6 @@ mockChromeEvent(instrumented, 'runtime.onStartup');
|
| mockChromeEvent(instrumented, 'storage.onChanged');
|
|
|
| NOTIFICATION_CARDS_URL = 'https://test/';
|
| -navigator = {language: 'en-US'};
|
| +navigator = {
|
| + language: 'en-US'
|
| +};
|
|
|