Skip to content

Commit

Permalink
fixed original collatz test
Browse files Browse the repository at this point in the history
  • Loading branch information
David Byrd committed Dec 10, 2012
1 parent 68bfb44 commit b26b8e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/useless.test.js
Expand Up @@ -10,7 +10,7 @@ suite('numeric', function() {
test('collatz should populate the given array with a collatz sequence', function (done) {
var result = [];
useless.collatz(7, result);
assert.equal([7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1].join(), result.join());
assert.equal([7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1].join(','), result.join(','));
done();
});
});

0 comments on commit b26b8e5

Please sign in to comment.