Skip to content

Commit 2159c36

Browse files
authored
Merge pull request #52 from W0rma/fix-ci
Fix number of arguments used in tests
2 parents 5fd4172 + bde33a0 commit 2159c36

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/StubTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,11 @@ public static function matcherProvider(): array
274274
[1, Stub\Expected::once()],
275275
[2, Stub\Expected::atLeastOnce()],
276276
[3, Stub\Expected::exactly(3)],
277-
[1, Stub\Expected::once(fn(): bool => true), true],
278-
[2, Stub\Expected::atLeastOnce(fn(): array => []), []],
279-
[1, Stub\Expected::exactly(1, fn() => null), null],
280-
[1, Stub\Expected::exactly(1, fn(): string => 'hello world!'), 'hello world!'],
281-
[1, Stub\Expected::exactly(1, 'hello world!'), 'hello world!'],
277+
[1, Stub\Expected::once(fn(): bool => true)],
278+
[2, Stub\Expected::atLeastOnce(fn(): array => [])],
279+
[1, Stub\Expected::exactly(1, fn() => null)],
280+
[1, Stub\Expected::exactly(1, fn(): string => 'hello world!')],
281+
[1, Stub\Expected::exactly(1, 'hello world!')],
282282
];
283283
}
284284

0 commit comments

Comments
 (0)