Skip to content

Commit dd4ef58

Browse files
committed
Fix build
1 parent 95464c5 commit dd4ef58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Type/WebMozartAssert/data/array.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -101,19 +101,19 @@ public function countBetween(array $a, array $b, array $c, array $d): void
101101
public function isList($a, $b): void
102102
{
103103
Assert::isList($a);
104-
assertType('array<int, mixed>', $a);
104+
assertType('list<mixed>', $a);
105105

106106
Assert::nullOrIsList($b);
107-
assertType('array<int, mixed>|null', $b);
107+
assertType('list<mixed>|null', $b);
108108
}
109109

110110
public function isNonEmptyList($a, $b): void
111111
{
112112
Assert::isNonEmptyList($a);
113-
assertType('non-empty-array<int, mixed>', $a);
113+
assertType('non-empty-list<mixed>', $a);
114114

115115
Assert::nullOrIsNonEmptyList($b);
116-
assertType('non-empty-array<int, mixed>|null', $b);
116+
assertType('non-empty-list<mixed>|null', $b);
117117
}
118118

119119
public function isMap($a, $b): void

0 commit comments

Comments
 (0)