aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/common_groups_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-31 16:16:41 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-31 16:16:41 +0200
commitb7b81f64316a900d6de308d4b65f89b7b4b58e2f (patch)
treea94889d5da04ca41520d74290fd8311820a98371 /tests/functional/common_groups_test.php
parentb4d23fa5519d4c0baa562990cf48ed058473fed4 (diff)
downloadforums-b7b81f64316a900d6de308d4b65f89b7b4b58e2f.tar
forums-b7b81f64316a900d6de308d4b65f89b7b4b58e2f.tar.gz
forums-b7b81f64316a900d6de308d4b65f89b7b4b58e2f.tar.bz2
forums-b7b81f64316a900d6de308d4b65f89b7b4b58e2f.tar.xz
forums-b7b81f64316a900d6de308d4b65f89b7b4b58e2f.zip
[ticket/11568] Use static calls for static methods
PHPBB3-11568
Diffstat (limited to 'tests/functional/common_groups_test.php')
-rw-r--r--tests/functional/common_groups_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/common_groups_test.php b/tests/functional/common_groups_test.php
index 6e1f1afdce..7c88ec900d 100644
--- a/tests/functional/common_groups_test.php
+++ b/tests/functional/common_groups_test.php
@@ -35,10 +35,10 @@ abstract class phpbb_functional_common_groups_test extends phpbb_functional_test
$this->add_lang(array('ucp', 'acp/groups'));
// Manage Administrators group
- $crawler = $this->request('GET', $this->get_url() . '&g=5&sid=' . $this->sid);
+ $crawler = self::request('GET', $this->get_url() . '&g=5&sid=' . $this->sid);
$form = $crawler->selectButton($this->lang('SUBMIT'))->form();
$form['group_colour']->setValue($input);
- $crawler = $this->submit($form);
+ $crawler = self::submit($form);
$this->assertContains($this->lang($expected), $crawler->text());
}
}