Skip to content

Commit f158feb

Browse files
committed
Fix fatal dataset error in test
1 parent c367385 commit f158feb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/Unit/ValueSerializers/ValueSerializerTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@
6363
true,
6464
false,
6565
'string',
66-
['array' => 'array'],
66+
// The array key must match our dataset parameter name,
67+
// otherwise nunomaduro/collision will throw a fatal
68+
// error right now...
69+
['value' => 'array'],
6770
(object) ['a' => 'b'],
6871
]);

0 commit comments

Comments
 (0)