| Index: chrome/test/data/extensions/api_test/input_method/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/input_method/background.js b/chrome/test/data/extensions/api_test/input_method/background.js
|
| index ceebc03e772c1dbedb80872698977603072c3eef..2102fb3516c0d9d70b5ca9d838f1b504e8bfdadc 100644
|
| --- a/chrome/test/data/extensions/api_test/input_method/background.js
|
| +++ b/chrome/test/data/extensions/api_test/input_method/background.js
|
| @@ -11,7 +11,7 @@ function setAndGetTest() {
|
| chrome.test.assertEq('done', response);
|
| console.log('Getting current input method.');
|
| chrome.inputMethodPrivate.get(function (inputMethod) {
|
| - chrome.test.assertEq(inputMethod, kNewInputMethod);
|
| + chrome.test.assertEq(kNewInputMethod, inputMethod);
|
| chrome.test.succeed();
|
| }
|
| );
|
| @@ -34,4 +34,5 @@ function setAndObserveTest() {
|
| );
|
| }
|
|
|
| +chrome.test.sendMessage('ready');
|
| chrome.test.runTests([setAndGetTest, setAndObserveTest]);
|
|
|