Skip to content

Commit e50bfcd

Browse files
committed
Fix namespace in tests
1 parent aed6ff9 commit e50bfcd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

backend/tests/Feature/Api/V1/CommentApiTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace Tests\Feature\Api;
5+
namespace Tests\Feature\Api\V1;
66

77
use App\Entity\Comment;
88
use App\Entity\Tweet;
9+
use Tests\Feature\Api\ApiTestCase;
910

1011
final class CommentApiTest extends ApiTestCase
1112
{

backend/tests/Feature/Api/V1/TweetApiTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace Tests\Feature\Api;
5+
namespace Tests\Feature\Api\V1;
66

77
use App\Entity\Tweet;
88
use App\Entity\User;
9+
use Tests\Feature\Api\ApiTestCase;
910

1011
final class TweetApiTest extends ApiTestCase
1112
{

0 commit comments

Comments
 (0)