Skip to content

Commit

Permalink
Update tests to look for 43 tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ericf committed Sep 27, 2013
1 parent 04620b8 commit c73bda8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var tests = {
topic: function() {
return tasks.length;
},
'and find 42 tasks': function(topic) {
assert.equal(42, topic);
'and find 43 tasks': function(topic) {
assert.equal(43, topic);
}
}
};
Expand All @@ -31,7 +31,7 @@ var tests = {
tasks.forEach(function(name) {
tests['should have ' + name] = {
topic: function() {
return grunt.task._tasks[name]
return grunt.task._tasks[name];
},
'should be an object': function(topic) {
assert.isObject(topic);
Expand Down

0 comments on commit c73bda8

Please sign in to comment.