aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Soref <[email protected]>2021-08-17 23:07:52 -0400
committerJosh Soref <[email protected]>2021-08-18 11:20:29 -0400
commit6669bcd6e3b8008fac786d54c5ccfc4fefa74769 (patch)
treee92bc3d4b176d9dcc67337880faf16ac9e4b04a2
parent222b58cd38667ecdf48712a51dc23db845e513a4 (diff)
downloadfaker-6669bcd6e3b8008fac786d54c5ccfc4fefa74769.tar.xz
faker-6669bcd6e3b8008fac786d54c5ccfc4fefa74769.zip
spelling: stubbed
Signed-off-by: Josh Soref <[email protected]>
-rw-r--r--test/datatype.unit.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/datatype.unit.js b/test/datatype.unit.js
index b206ca47..8ca329ec 100644
--- a/test/datatype.unit.js
+++ b/test/datatype.unit.js
@@ -166,7 +166,7 @@ describe("datatype.js", function () {
assert.ok(!isNaN(date.getTime()));
assert.strictEqual(Object.prototype.toString.call(date), "[object Date]");
});
- it('basic test with stubed value', function () {
+ it('basic test with stubbed value', function () {
var today = new Date();
sinon.stub(faker.datatype, 'number').returns(today);
var date = faker.datatype.datetime();