aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-27 22:33:48 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:10:08 +0200
commit9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d (patch)
treefda49a7aca7fbcb1109796d57b2fce00b9e6296b /tests/functional
parentda98866c24572031b2deda4e8a50cac07efdef5d (diff)
downloadforums-9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d.tar
forums-9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d.tar.gz
forums-9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d.tar.bz2
forums-9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d.tar.xz
forums-9be57ec076eb1c819c6a6a51c4f2ba9f3e3c915d.zip
[ticket/11568] Fix common_groups_test.php form handling
PHPBB3-11568
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/common_groups_test.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/functional/common_groups_test.php b/tests/functional/common_groups_test.php
index 7ccd78421e..6e1f1afdce 100644
--- a/tests/functional/common_groups_test.php
+++ b/tests/functional/common_groups_test.php
@@ -36,10 +36,9 @@ abstract class phpbb_functional_common_groups_test extends phpbb_functional_test
// Manage Administrators group
$crawler = $this->request('GET', $this->get_url() . '&g=5&sid=' . $this->sid);
- $this->assert_response_success();
$form = $crawler->selectButton($this->lang('SUBMIT'))->form();
$form['group_colour']->setValue($input);
- $crawler = $this->client->submit($form);
+ $crawler = $this->submit($form);
$this->assertContains($this->lang($expected), $crawler->text());
}
}