Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldiron committed Jul 2, 2024
1 parent ed89b19 commit 726540d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Validator/MultipleOfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testIsValid()
$validator = new AllOf([new Text(20), new URL()], Validator::TYPE_STRING);

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

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

0 comments on commit 726540d

Please sign in to comment.