1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-03 15:27:42 +02:00

[ticket/9714] Use correct variable name in email regular expression tests.

PHPBB3-9714
This commit is contained in:
Andreas Fischer
2010-07-08 20:26:50 +02:00
parent 6da582e8be
commit c6c4d01fe9

View File

@@ -70,7 +70,7 @@ class phpbb_regex_email_test extends phpbb_test_case
/** /**
* @dataProvider negative_match_data * @dataProvider negative_match_data
*/ */
public function test_negative_match($address) public function test_negative_match($email)
{ {
$this->assertEquals(0, preg_match($this->regex, $email)); $this->assertEquals(0, preg_match($this->regex, $email));
} }