From 4d337f0bee6505e3590403d451c34d9e04e15b40 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 29 Mar 2014 13:12:05 -0700 Subject: [PATCH] Fix typo in `_.once` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index efe6e0100..e682072eb 100644 --- a/test/test.js +++ b/test/test.js @@ -6141,7 +6141,7 @@ var once = _.once(function() { count++; - func(); + once(); }); once();