Skip to content

Commit

Permalink
Fixing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgtonge committed Feb 2, 2012
1 parent 915aaeb commit d2f8318
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
, "url": "https://davidgtonge@github.com/davidgtonge/backbone_query.git"
}
, "dependencies": {
"backbone": ">=0.5.x"
"coffee-script" : ">=1.x.x"
, "backbone": ">=0.5.x"
, "underscore": ">=1.1.x"
}
, "devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/backbone-query-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
test = function(name, test_cb) {
return exports[name] = function(testObj) {
var result, _i, _len;
equals = [];
test_cb();
for (_i = 0, _len = equals.length; _i < _len; _i++) {
result = equals[_i];
testObj.equal(result[0], result[1]);
}
equals = [];
return testObj.done();
};
};
Expand Down

0 comments on commit d2f8318

Please sign in to comment.