Tests: Fix --repeat in EventDispatcherTest

This commit is contained in:
Igor Scheller 2023-09-25 00:14:34 +02:00 committed by Michael Weimann
parent cd8c01c080
commit 599fff26d4
1 changed files with 7 additions and 0 deletions

View File

@ -148,4 +148,11 @@ class EventDispatcherTest extends TestCase
{
return ['default' => 'handler'];
}
public function setUp(): void
{
parent::setUp();
$this->firedEvents = [];
}
}