diff --git a/tests/Unit/Type/Parser/CachedParserTest.php b/tests/Unit/Type/Parser/CachedParserTest.php index aa084ad..50024f7 100644 --- a/tests/Unit/Type/Parser/CachedParserTest.php +++ b/tests/Unit/Type/Parser/CachedParserTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Factory; +namespace CuyZ\Valinor\Tests\Unit\Type\Parser; use CuyZ\Valinor\Tests\Fake\Type\FakeType; use CuyZ\Valinor\Tests\Fake\Type\Parser\FakeTypeParser; diff --git a/tests/Unit/Type/Parser/LazyParserTest.php b/tests/Unit/Type/Parser/LazyParserTest.php index 3d173b9..5d9dce2 100644 --- a/tests/Unit/Type/Parser/LazyParserTest.php +++ b/tests/Unit/Type/Parser/LazyParserTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Factory; +namespace CuyZ\Valinor\Tests\Unit\Type\Parser; use CuyZ\Valinor\Tests\Fake\Type\FakeType; use CuyZ\Valinor\Tests\Fake\Type\Parser\FakeTypeParser; diff --git a/tests/Unit/Type/Parser/Lexer/Token/ArrayTokenTest.php b/tests/Unit/Type/Parser/Lexer/Token/ArrayTokenTest.php index 4084241..5d6fd45 100644 --- a/tests/Unit/Type/Parser/Lexer/Token/ArrayTokenTest.php +++ b/tests/Unit/Type/Parser/Lexer/Token/ArrayTokenTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer; +namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer\Token; use CuyZ\Valinor\Type\Parser\Lexer\Token\ArrayToken; use PHPUnit\Framework\TestCase; diff --git a/tests/Unit/Type/Parser/Lexer/Token/ListTokenTest.php b/tests/Unit/Type/Parser/Lexer/Token/ListTokenTest.php index b2574e2..579b2a9 100644 --- a/tests/Unit/Type/Parser/Lexer/Token/ListTokenTest.php +++ b/tests/Unit/Type/Parser/Lexer/Token/ListTokenTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer; +namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer\Token; use CuyZ\Valinor\Type\Parser\Lexer\Token\ListToken; use PHPUnit\Framework\TestCase; diff --git a/tests/Unit/Type/Parser/Lexer/Token/NativeTokenTest.php b/tests/Unit/Type/Parser/Lexer/Token/NativeTokenTest.php index 8373801..a9ec6bb 100644 --- a/tests/Unit/Type/Parser/Lexer/Token/NativeTokenTest.php +++ b/tests/Unit/Type/Parser/Lexer/Token/NativeTokenTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer; +namespace CuyZ\Valinor\Tests\Unit\Type\Parser\Lexer\Token; use AssertionError; use CuyZ\Valinor\Type\Parser\Lexer\Token\NativeToken;