Fix missing call to parent setUp

This commit is contained in:
Yassine Guedidi
2022-08-01 07:38:50 +01:00
committed by Jeremy Benoist
parent e59a43596f
commit af6363bbbd
3 changed files with 2 additions and 10 deletions

View File

@ -23,6 +23,7 @@ abstract class WallabagAnnotationTestCase extends WebTestCase
protected function setUp(): void
{
parent::setUp();
$this->client = $this->createAuthorizedClient();
}