diff --git a/tests/Value/ValueTest.php b/tests/Unit/Value/ValueTest.php similarity index 95% rename from tests/Value/ValueTest.php rename to tests/Unit/Value/ValueTest.php index a67cbe81..d96485fa 100644 --- a/tests/Value/ValueTest.php +++ b/tests/Unit/Value/ValueTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Sabberworm\CSS\Tests\Value; +namespace Sabberworm\CSS\Tests\Unit\Value; use PHPUnit\Framework\TestCase; use Sabberworm\CSS\Parsing\ParserState; @@ -17,7 +17,7 @@ final class ValueTest extends TestCase /** * the default set of delimiters for parsing most values * - * @see \Rule\Rule::listDelimiterForRule + * @see \Sabberworm\CSS\Rule\Rule::listDelimiterForRule * * @var array */ @@ -33,7 +33,7 @@ public static function provideArithmeticOperator(): array return \array_combine( $units, \array_map( - function (string $unit): array { + static function (string $unit): array { return [$unit]; }, $units