From 2fe5a863ac83a6bfe966816d263ef6ede0249a4e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 10 Nov 2013 13:22:47 -0800 Subject: [PATCH] Avoid `_.noop` use in test/underscore.html and test/backbone.html. --- test/backbone.html | 2 +- test/underscore.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/backbone.html b/test/backbone.html index f76e7d910..8b9fa6be6 100644 --- a/test/backbone.html +++ b/test/backbone.html @@ -63,7 +63,7 @@ } if (skippedAsserts === true) { test.async = false; - test.callback = _.noop; + test.callback = function() {}; test.expected = 0; return; } diff --git a/test/underscore.html b/test/underscore.html index dc594ed89..d74021998 100644 --- a/test/underscore.html +++ b/test/underscore.html @@ -138,7 +138,7 @@ } if (skippedAsserts === true) { test.async = false; - test.callback = _.noop; + test.callback = function() {}; test.expected = 0; return; }