diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 20:26:50 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 20:26:50 +0200 |
| commit | c6c4d01fe9619a1db585b7446343517762cd18b1 (patch) | |
| tree | 25c314d809f7a252a4f20fe52c3157ab5b73395c | |
| parent | 6da582e8be50fa7211706625402215f6f87ed48b (diff) | |
| download | forums-c6c4d01fe9619a1db585b7446343517762cd18b1.tar forums-c6c4d01fe9619a1db585b7446343517762cd18b1.tar.gz forums-c6c4d01fe9619a1db585b7446343517762cd18b1.tar.bz2 forums-c6c4d01fe9619a1db585b7446343517762cd18b1.tar.xz forums-c6c4d01fe9619a1db585b7446343517762cd18b1.zip | |
[ticket/9714] Use correct variable name in email regular expression tests.
PHPBB3-9714
| -rw-r--r-- | tests/regex/email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regex/email.php b/tests/regex/email.php index b1519dfa5f..85b6406ffc 100644 --- a/tests/regex/email.php +++ b/tests/regex/email.php @@ -70,7 +70,7 @@ class phpbb_regex_email_test extends phpbb_test_case /** * @dataProvider negative_match_data */ - public function test_negative_match($address) + public function test_negative_match($email) { $this->assertEquals(0, preg_match($this->regex, $email)); } |
