Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/Value/ValueTest.php → tests/Unit/Value/ValueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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<int, string>
*/
Expand All @@ -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
Expand Down