Skip to content

Commit ed393d5

Browse files
committed
Fix ci/cd
1 parent efd3871 commit ed393d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Validator/ArrayListTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testDescription(): void
1212
$this->assertFalse($arrayList->isValid(['text']));
1313
$this->assertEquals('Value must a valid array and Value must be a valid integer', $arrayList->getDescription());
1414

15-
$arrayList = new ArrayList(new Integer(100), 3);
15+
$arrayList = new ArrayList(new Integer(), 3);
1616
$this->assertFalse($arrayList->isValid(['a', 'b', 'c', 'd']));
1717
$this->assertEquals('Value must a valid array no longer than 3 items and Value must be a valid integer', $arrayList->getDescription());
1818
}

0 commit comments

Comments
 (0)