diff --git a/tests/Type/WebMozartAssert/data/array.php b/tests/Type/WebMozartAssert/data/array.php index a105357..f670b95 100644 --- a/tests/Type/WebMozartAssert/data/array.php +++ b/tests/Type/WebMozartAssert/data/array.php @@ -101,19 +101,19 @@ public function countBetween(array $a, array $b, array $c, array $d): void public function isList($a, $b): void { Assert::isList($a); - assertType('array', $a); + assertType('list', $a); Assert::nullOrIsList($b); - assertType('array|null', $b); + assertType('list|null', $b); } public function isNonEmptyList($a, $b): void { Assert::isNonEmptyList($a); - assertType('non-empty-array', $a); + assertType('non-empty-list', $a); Assert::nullOrIsNonEmptyList($b); - assertType('non-empty-array|null', $b); + assertType('non-empty-list|null', $b); } public function isMap($a, $b): void