Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Make tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
ficristo authored and ficristo committed Aug 3, 2016
1 parent 8db428c commit a6557ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/MockFileSystemImpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,14 @@ define(function (require, exports, module) {
_offlineCallback = offlineCallback;
}

function watchPath(path, callback) {
function watchPath(path, ignored, callback) {
var cb = _getCallback("watchPath", path, callback);

_model.watchPath(path);
cb(null);
}

function unwatchPath(path, callback) {
function unwatchPath(path, ignored, callback) {
var cb = _getCallback("unwatchPath", path, callback);
_model.unwatchPath(path);
cb(null);
Expand Down

0 comments on commit a6557ac

Please sign in to comment.