Avoid _.noop use in test/underscore.html and test/backbone.html.

This commit is contained in:
John-David Dalton
2013-11-10 13:22:47 -08:00
parent 7d1fccf474
commit 2fe5a863ac
2 changed files with 2 additions and 2 deletions

View File

@@ -63,7 +63,7 @@
}
if (skippedAsserts === true) {
test.async = false;
test.callback = _.noop;
test.callback = function() {};
test.expected = 0;
return;
}

View File

@@ -138,7 +138,7 @@
}
if (skippedAsserts === true) {
test.async = false;
test.callback = _.noop;
test.callback = function() {};
test.expected = 0;
return;
}