| Index: ui/file_manager/integration_tests/remote_call.js
|
| diff --git a/ui/file_manager/integration_tests/remote_call.js b/ui/file_manager/integration_tests/remote_call.js
|
| index aa014c6ed19bfe7f82349ea3569ae16c1944edea..547e0318f7b747b9f9f675d3d0466bf8d063987f 100644
|
| --- a/ui/file_manager/integration_tests/remote_call.js
|
| +++ b/ui/file_manager/integration_tests/remote_call.js
|
| @@ -26,7 +26,8 @@ RemoteCall.isStepByStepEnabled = function() {
|
| };
|
|
|
| /**
|
| - * Calls a remote test util in Files.app's extension. See: test_util.js.
|
| + * Calls a remote test util in Files.app's extension. See:
|
| + * registerRemoteTestUtils in test_util_base.js.
|
| *
|
| * @param {string} func Function name.
|
| * @param {?string} appId Target window's App ID or null for functions
|
| @@ -59,10 +60,11 @@ RemoteCall.prototype.callRemoteTestUtil =
|
| appId: appId,
|
| args: args
|
| },
|
| + {},
|
| function(var_args) {
|
| if (stepByStep) {
|
| console.info('Returned value:');
|
| - console.info(arguments);
|
| + console.info(JSON.stringify(arguments));
|
| }
|
| if (opt_callback)
|
| opt_callback.apply(null, arguments);
|
|
|