diff --git a/tests/phpunit/Unit/AssetFactoryTest.php b/tests/phpunit/Unit/AssetFactoryTest.php index 2cf06af..7f227f2 100644 --- a/tests/phpunit/Unit/AssetFactoryTest.php +++ b/tests/phpunit/Unit/AssetFactoryTest.php @@ -96,7 +96,7 @@ public function testDependencies($input, array $expected): void 'handle' => 'foo', 'url' => 'foo.js', 'type' => Script::class, - 'dependencies' => $input + 'dependencies' => $input, ] ); @@ -123,7 +123,7 @@ public function provideDependencies(): \Generator ['dependency-1', 'dependency-2', 'dependency-3'], ]; - yield "non scalar - bool" => [ + yield "non scalar - class" => [ new \stdClass(), [], ];