From d1cdcd7473d3c2329b6d58cbbd689f842bc00f64 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 26 Jan 2025 16:42:16 +0100 Subject: [PATCH] [TASK] Move `KeyFrameTest` to unit tests Part of #758. --- tests/{ => Unit}/CSSList/KeyFrameTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename tests/{ => Unit}/CSSList/KeyFrameTest.php (93%) diff --git a/tests/CSSList/KeyFrameTest.php b/tests/Unit/CSSList/KeyFrameTest.php similarity index 93% rename from tests/CSSList/KeyFrameTest.php rename to tests/Unit/CSSList/KeyFrameTest.php index 501a19a5..7e9ebd8a 100644 --- a/tests/CSSList/KeyFrameTest.php +++ b/tests/Unit/CSSList/KeyFrameTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Sabberworm\CSS\Tests\CSSList; +namespace Sabberworm\CSS\Tests\Unit\CSSList; use PHPUnit\Framework\TestCase; use Sabberworm\CSS\Comment\Commentable; @@ -18,7 +18,7 @@ final class KeyFrameTest extends TestCase /** * @var KeyFrame */ - protected $subject; + private $subject; protected function setUp(): void {