We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd3871 commit ed393d5Copy full SHA for ed393d5
tests/Validator/ArrayListTest.php
@@ -12,7 +12,7 @@ public function testDescription(): void
12
$this->assertFalse($arrayList->isValid(['text']));
13
$this->assertEquals('Value must a valid array and Value must be a valid integer', $arrayList->getDescription());
14
15
- $arrayList = new ArrayList(new Integer(100), 3);
+ $arrayList = new ArrayList(new Integer(), 3);
16
$this->assertFalse($arrayList->isValid(['a', 'b', 'c', 'd']));
17
$this->assertEquals('Value must a valid array no longer than 3 items and Value must be a valid integer', $arrayList->getDescription());
18
}
0 commit comments