From 1a1b702bb628211eab0f8e8a4a970466b7bf9589 Mon Sep 17 00:00:00 2001 From: mtso Date: Fri, 24 Feb 2017 11:02:45 -0800 Subject: [PATCH] Change the expected test case result. Changes the expected result of the test case named: `will execute every threshold ms` to `[0, 10, 20, 30, 40, 50]`. --- throttle/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/throttle/test.js b/throttle/test.js index fa91434..2badf98 100644 --- a/throttle/test.js +++ b/throttle/test.js @@ -58,7 +58,7 @@ describe('throttle', function() { setTimeout(function() { clearInterval(interval); - assert.deepEqual(calledTimes, [0, 11, 22, 33, 44, 55]); + assert.deepEqual(calledTimes, [0, 10, 20, 30, 40, 50]); done(); }, 59);