diff options
| author | Fyorl <gaelreth@gmail.com> | 2012-07-03 02:03:26 +0100 |
|---|---|---|
| committer | Fyorl <gaelreth@gmail.com> | 2012-07-09 14:08:19 +0100 |
| commit | 61d74007a4b728f67c672561a8dd907e64de3070 (patch) | |
| tree | ed316db119ac004470a8574f48a66701841915b9 /tests/functional | |
| parent | 1bb64ab23eb7ed4062c720958ffdf18781177b51 (diff) | |
| download | forums-61d74007a4b728f67c672561a8dd907e64de3070.tar forums-61d74007a4b728f67c672561a8dd907e64de3070.tar.gz forums-61d74007a4b728f67c672561a8dd907e64de3070.tar.bz2 forums-61d74007a4b728f67c672561a8dd907e64de3070.tar.xz forums-61d74007a4b728f67c672561a8dd907e64de3070.zip | |
[ticket/10941] Minor typo fixes
Removed superfluous $user = null; that was left over from refactoring.
PHPBB3-10941
Diffstat (limited to 'tests/functional')
| -rw-r--r-- | tests/functional/fileupload_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fileupload_test.php b/tests/functional/fileupload_test.php index ee89836c45..44bb22da8f 100644 --- a/tests/functional/fileupload_test.php +++ b/tests/functional/fileupload_test.php @@ -78,7 +78,7 @@ class phpbb_functional_fileupload_test extends phpbb_functional_test_case // Test 1: Invalid extension $upload = new fileupload('', array('jpg'), 100); $file = $upload->remote_upload('http://example.com/image.gif'); - $this->assertEquals('URL_INVALID',$file->error[0]); + $this->assertEquals('URL_INVALID', $file->error[0]); // Test 2: Non-existant file $upload = new fileupload('', array('jpg'), 100); |
