Skip to content

Commit 7601444

Browse files
authored
Fix broken test
1 parent 8d28bdc commit 7601444

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/NumberTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ public function test_multipleOf_reset(): void
6767
->multipleOf(2)
6868
->multipleOf(null);
6969

70-
$fail = $this->createMock(MockedCaller::class)
71-
->expects($this->never())
70+
$fail = $this->createMock(MockedCaller::class);
71+
$fail->expects($this->never())
7272
->method('__invoke');
7373

7474
$number->validate(5, $fail);

0 commit comments

Comments
 (0)