Skip to content

Commit

Permalink
fix(tests): typo (#2603)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed May 29, 2024
1 parent 1eb2a25 commit 794cb81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spy-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ describe("spy", function () {
assert(instance instanceof TestClass);
});

it("passs arguments to function", function () {
it("passes arguments to function", function () {
let actualArgs;

const func = function (a, b, c, d) {
Expand Down Expand Up @@ -2419,7 +2419,7 @@ describe("spy", function () {
);
});

it("passs additional arguments", function () {
it("passes additional arguments", function () {
const spy = createSpy();
const callback = createSpy();
const array = [];
Expand Down Expand Up @@ -2627,7 +2627,7 @@ describe("spy", function () {
);
});

it("passs additional arguments", function () {
it("passes additional arguments", function () {
const spy = createSpy();
const callback = createSpy();
const array = [];
Expand Down

0 comments on commit 794cb81

Please sign in to comment.