Skip to content

Commit

Permalink
update to 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nuintun committed May 4, 2015
1 parent 8ccdc48 commit 6813ee0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var cmdDeps = require('../index');
var cdeps = require('../index');
var detective = require('detective');
var Benchmark = require('benchmark');

Expand Down Expand Up @@ -34,9 +34,9 @@ Object.keys(tests).forEach(function (key){
var s = tests[key];
// add tests
suite.add('cmd-deps: ' + key, function (){
return cmdDeps(s).length === results[key];
return cdeps(s).length === results[key];
}).add('detective: ' + key, function (){
return cmdDeps(s).length === results[key];
return cdeps(s).length === results[key];
})
// add listeners
.on('cycle', function (event){
Expand Down

0 comments on commit 6813ee0

Please sign in to comment.