Skip to content

Commit

Permalink
Merge pull request #435 from ergebnis/fix/assert-pre-conditions
Browse files Browse the repository at this point in the history
Fix: Sleep in `assertPreConditions()`
  • Loading branch information
localheinz authored Dec 20, 2023
2 parents 2ce3b6c + e7787fb commit cfed96f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ protected function setUp(): void
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function assertPreConditions(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function tearDown(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ protected function setUp(): void
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function assertPreConditions(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function tearDown(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ protected function setUp(): void
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function assertPreConditions(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
}

protected function tearDown(): void
{
Test\Fixture\Sleeper::fromMilliseconds(100)->sleep();
Expand Down

0 comments on commit cfed96f

Please sign in to comment.