diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-20 20:27:59 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-20 20:42:06 -0500 |
commit | b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08 (patch) | |
tree | 4c40f0149d8cbd03879d6e87c182f955e8b87b78 /tests/functional/fileupload_form_test.php | |
parent | 31b5f91ea1547a48a1982e73da961b1ef1afab01 (diff) | |
download | forums-b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08.tar forums-b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08.tar.gz forums-b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08.tar.bz2 forums-b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08.tar.xz forums-b6f40f7c33a4cdb4a31af6374b2b1fd7c13deb08.zip |
[ticket/10758-upload] Convert error to a failure.
PHPBB3-10758
Diffstat (limited to 'tests/functional/fileupload_form_test.php')
-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 99afcfdc3d..68dfba8fb9 100644 --- a/tests/functional/fileupload_form_test.php +++ b/tests/functional/fileupload_form_test.php @@ -45,7 +45,7 @@ class phpbb_functional_fileupload_form_test extends phpbb_functional_test_case public function test_empty_file() { $crawler = $this->upload_file('empty.png', 'image/png'); - $this->assertEquals($this->lang('ATTACHED_IMAGE_NOT_IMAGE'), $crawler->filter('div#message p')->text()); + $this->assertEquals($this->lang('ATTACHED_IMAGE_NOT_IMAGE'), $this->assert_filter($crawler, 'div#message p')->text()); } public function test_invalid_extension() |