diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-18 14:32:48 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-18 14:32:48 -0500 |
commit | 7ec94208c4096b752e77503ef53382e126b7dab5 (patch) | |
tree | ee3348315198e5d6c4af2efe781ebc10f9030a68 /tests/functional | |
parent | 440c66267ef768888617c211c7f05a5fd25e2378 (diff) | |
download | forums-7ec94208c4096b752e77503ef53382e126b7dab5.tar forums-7ec94208c4096b752e77503ef53382e126b7dab5.tar.gz forums-7ec94208c4096b752e77503ef53382e126b7dab5.tar.bz2 forums-7ec94208c4096b752e77503ef53382e126b7dab5.tar.xz forums-7ec94208c4096b752e77503ef53382e126b7dab5.zip |
[ticket/11202] Fix comment char, use more descriptive comment.
PHPBB3-11202
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/fileupload_form_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fileupload_form_test.php b/tests/functional/fileupload_form_test.php index 3db389b4f9..99afcfdc3d 100644 --- a/tests/functional/fileupload_form_test.php +++ b/tests/functional/fileupload_form_test.php @@ -65,7 +65,7 @@ class phpbb_functional_fileupload_form_test extends phpbb_functional_test_case { $crawler = $this->upload_file('valid.jpg', 'image/jpeg'); $this->assert_response_success(); - # error message + // ensure there was no error message rendered $this->assertNotContains('<h2>' . $this->lang('INFORMATION') . '</h2>', $this->client->getResponse()->getContent()); $this->assertContains($this->lang('POSTED_ATTACHMENTS'), $crawler->filter('#postform h3')->eq(1)->text()); } |