Unused extensions

This commit is contained in:
Tim Schaub
2014-07-06 12:43:55 -06:00
parent 93716fc7f0
commit 7e8551a767
2 changed files with 7 additions and 38 deletions

View File

@@ -60,8 +60,7 @@
* @param {Number} n Number.
* @param {Number} tol Tolerance.
*/
expect.Assertion.prototype.roughlyEqual =
expect.Assertion.prototype.kindaEqual = function(n, tol) {
expect.Assertion.prototype.roughlyEqual = function(n, tol) {
this.assert(
Math.abs(this.obj - n) <= tol,
function() {
@@ -79,8 +78,7 @@
/**
* Assert that a sinon spy was called.
*/
expect.Assertion.prototype.called =
expect.Assertion.prototype.totallyWantsToSpeakToYou = function() {
expect.Assertion.prototype.called = function() {
this.assert(
this.obj.called,
function() {