Skip to content

Commit 726540d

Browse files
committed
Typo
1 parent ed89b19 commit 726540d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Validator/MultipleOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function testIsValid()
1616
$validator = new AllOf([new Text(20), new URL()], Validator::TYPE_STRING);
1717

1818
$this->assertEquals('string', $validator->getType());
19-
$this->assertEquals("1Value must be a valid string and at least 1 chars and no longer than 20 chars", $validator->getDescription());
19+
$this->assertEquals("Value must be a valid string and at least 1 chars and no longer than 20 chars", $validator->getDescription());
2020

2121
// Valid URL but invalid text length
2222
$this->assertFalse($validator->isValid('http://example.com/very-long-url'));

0 commit comments

Comments
 (0)