aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/fileupload_test_form.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/fileupload_test_form.php')
-rw-r--r--tests/functional/fileupload_test_form.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/functional/fileupload_test_form.php b/tests/functional/fileupload_test_form.php
index 48fa75ca4b..87979e6a68 100644
--- a/tests/functional/fileupload_test_form.php
+++ b/tests/functional/fileupload_test_form.php
@@ -43,11 +43,12 @@ class phpbb_functional_fileupload_test_form extends phpbb_functional_test_case
{
// Cannot be tested by an admin account which this functional framework
// provides
- /*$crawler = $this->request('GET', 'posting.php?mode=reply&f=2&t=1&sid=' . $this->sid);
+ $this->markTestIncomplete();
+ $crawler = $this->request('GET', 'posting.php?mode=reply&f=2&t=1&sid=' . $this->sid);
$form = $crawler->selectButton('add_file')->form();
$form['fileupload']->upload($path . 'too-large.png');
$crawler = $this->client->submit($form);
- $this->assertEquals(1, $crawler->filter('div#message')->count());*/
+ $this->assertEquals(1, $crawler->filter('div#message')->count());
}
public function test_valid_file()