mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Fix typo in _.range test.
This commit is contained in:
@@ -3388,7 +3388,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('should work when passing `start`, `end`, and `step` arguments', 1, function() {
|
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() {
|
test('should support a `step` of `0`', 1, function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user