Skip to content

Commit 794cb81

Browse files
authored
fix(tests): typo (#2603)
1 parent 1eb2a25 commit 794cb81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/spy-test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ describe("spy", function () {
539539
assert(instance instanceof TestClass);
540540
});
541541

542-
it("passs arguments to function", function () {
542+
it("passes arguments to function", function () {
543543
let actualArgs;
544544

545545
const func = function (a, b, c, d) {
@@ -2419,7 +2419,7 @@ describe("spy", function () {
24192419
);
24202420
});
24212421

2422-
it("passs additional arguments", function () {
2422+
it("passes additional arguments", function () {
24232423
const spy = createSpy();
24242424
const callback = createSpy();
24252425
const array = [];
@@ -2627,7 +2627,7 @@ describe("spy", function () {
26272627
);
26282628
});
26292629

2630-
it("passs additional arguments", function () {
2630+
it("passes additional arguments", function () {
26312631
const spy = createSpy();
26322632
const callback = createSpy();
26332633
const array = [];

0 commit comments

Comments
 (0)