Skip to content

Commit e69eda8

Browse files
committed
AssetFactoryTest // fix type in dataProvider.
1 parent ce714a2 commit e69eda8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/phpunit/Unit/AssetFactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function testDependencies($input, array $expected): void
9696
'handle' => 'foo',
9797
'url' => 'foo.js',
9898
'type' => Script::class,
99-
'dependencies' => $input
99+
'dependencies' => $input,
100100
]
101101
);
102102

@@ -123,7 +123,7 @@ public function provideDependencies(): \Generator
123123
['dependency-1', 'dependency-2', 'dependency-3'],
124124
];
125125

126-
yield "non scalar - bool" => [
126+
yield "non scalar - class" => [
127127
new \stdClass(),
128128
[],
129129
];

0 commit comments

Comments
 (0)