From 56786fb54d2039560123bfc469a83ea750e09838 Mon Sep 17 00:00:00 2001 From: Camille Simiand <camille.simiand@tetras-libre.fr> Date: Thu, 6 Jan 2022 15:38:59 +0100 Subject: [PATCH] Fix tests namespaces --- tests/functional/CapsuleControllerTest.php | 2 +- tests/functional/LoginTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/CapsuleControllerTest.php b/tests/functional/CapsuleControllerTest.php index 4c311c8..85fcf4f 100644 --- a/tests/functional/CapsuleControllerTest.php +++ b/tests/functional/CapsuleControllerTest.php @@ -1,6 +1,6 @@ <?php -namespace App\Tests\Controller; +namespace App\Tests\functional; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; diff --git a/tests/functional/LoginTest.php b/tests/functional/LoginTest.php index c9ff276..a9b529a 100644 --- a/tests/functional/LoginTest.php +++ b/tests/functional/LoginTest.php @@ -1,6 +1,6 @@ <?php -namespace App\Tests\Controller; +namespace App\Tests\functional; use Symfony\Bundle\FrameworkBundle\KernelBrowser; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; -- GitLab