From 44fa3d2d07d0b0041ceae914b38bb6def44a1bca Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 24 Jan 2014 00:52:38 -0800 Subject: [PATCH] Fix typo in throttle test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 8cead558b..7de22eb4c 100644 --- a/test/test.js +++ b/test/test.js @@ -7677,7 +7677,7 @@ setTimeout(function() { var result = [throttled('x'), throttled('y')]; - notEqual(result[0], 'x'); + notEqual(result[0], 'a'); notStrictEqual(result[0], undefined); notEqual(result[1], 'y');