Skip to content

Commit 33a2571

Browse files
committed
Fix a parameter name in a test
1 parent 2a7f22e commit 33a2571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Constraints/NotBlankValidatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ protected function tearDown()
3535
/**
3636
* @dataProvider getValidValues
3737
*/
38-
public function testValidValues($date)
38+
public function testValidValues($value)
3939
{
4040
$this->context->expects($this->never())
4141
->method('addViolation');
4242

43-
$this->validator->validate($date, new NotBlank());
43+
$this->validator->validate($value, new NotBlank());
4444
}
4545

4646
public function getValidValues()

0 commit comments

Comments
 (0)