1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

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
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552
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();
}

View file

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