Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Mar 28, 2024
1 parent 1d72850 commit 700c9a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/Mockery/IsolatedMockeryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ public function testOverloadMock(): void

private function requireFoo2(Foo2 $foo): void
{
echo 'test';
usleep(1);
}

private function requireFoo3(Foo3 $foo): void
{
echo 'test';
usleep(1);
}

}
6 changes: 3 additions & 3 deletions tests/Mockery/MockeryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,17 @@ public function testNamedMock(): void

private function requireFoo(Foo $foo): void
{
echo 'test';
usleep(1);
}

private function requireBaz(Baz $baz): void
{
echo 'test';
usleep(1);
}

private function requireBuzz(Buzz $buzz): void
{
echo 'test';
usleep(1);
}

}

0 comments on commit 700c9a7

Please # to comment.