From dff05ab57b933fa20b21088dd2e891ab19f04cc7 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 26 May 2016 18:10:09 +0000 Subject: [PATCH] spelling: arguments --- test/helpers/sinon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/helpers/sinon.js b/test/helpers/sinon.js index 2f5890a31..6a440ba92 100644 --- a/test/helpers/sinon.js +++ b/test/helpers/sinon.js @@ -1671,7 +1671,7 @@ var sinon = (function (formatio) { var original = this; var fake = this._create(); - fake.matchingAguments = args; + fake.matchingArguments = args; fake.parent = this; push.call(this.fakes, fake); @@ -1695,7 +1695,7 @@ var sinon = (function (formatio) { }, matches: function (args, strict) { - var margs = this.matchingAguments; + var margs = this.matchingArguments; if (margs.length <= args.length && sinon.deepEqual(margs, args.slice(0, margs.length))) {