Fix typo in _.range test.

This commit is contained in:
John-David Dalton
2013-10-07 23:52:15 -07:00
parent e7320e7bd3
commit d7ae0105c3

View File

@@ -3388,7 +3388,7 @@
});
test('should work when passing `start`, `end`, and `step` arguments', 1, function() {
deepEqual(_.range(1, 20, 5), [0, 5, 10, 15]);
deepEqual(_.range(0, 20, 5), [0, 5, 10, 15]);
});
test('should support a `step` of `0`', 1, function() {