From d7ae0105c3886b4cf2567da88b68c5de3ef2f723 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 7 Oct 2013 23:52:15 -0700 Subject: [PATCH] Fix typo in `_.range` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 9e4117e33..ec9d5733b 100644 --- a/test/test.js +++ b/test/test.js @@ -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() {