mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Avoid _.noop use in test/underscore.html and test/backbone.html.
This commit is contained in:
@@ -63,7 +63,7 @@
|
|||||||
}
|
}
|
||||||
if (skippedAsserts === true) {
|
if (skippedAsserts === true) {
|
||||||
test.async = false;
|
test.async = false;
|
||||||
test.callback = _.noop;
|
test.callback = function() {};
|
||||||
test.expected = 0;
|
test.expected = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -138,7 +138,7 @@
|
|||||||
}
|
}
|
||||||
if (skippedAsserts === true) {
|
if (skippedAsserts === true) {
|
||||||
test.async = false;
|
test.async = false;
|
||||||
test.callback = _.noop;
|
test.callback = function() {};
|
||||||
test.expected = 0;
|
test.expected = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user