diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:03:41 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:03:41 +0200 |
| commit | 8b8ba3d7ac45447f82fe43e50a0d6c921922d214 (patch) | |
| tree | 56e9962464f507d4b0dc66330dba559843dbbe2c | |
| parent | 390dc86344c23b658085bae4a719399e5eb579f0 (diff) | |
| download | forums-8b8ba3d7ac45447f82fe43e50a0d6c921922d214.tar forums-8b8ba3d7ac45447f82fe43e50a0d6c921922d214.tar.gz forums-8b8ba3d7ac45447f82fe43e50a0d6c921922d214.tar.bz2 forums-8b8ba3d7ac45447f82fe43e50a0d6c921922d214.tar.xz forums-8b8ba3d7ac45447f82fe43e50a0d6c921922d214.zip | |
[ticket/11700] Check for ALLOW_REMOTE_UPLOAD in acp output as expected
PHPBB3-11700
| -rw-r--r-- | tests/functional/common_avatar_test.php | 2 | ||||
| -rw-r--r-- | tests/functional/common_groups_test.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/common_avatar_test.php b/tests/functional/common_avatar_test.php index c0f21d07c2..1fd8f2ed6f 100644 --- a/tests/functional/common_avatar_test.php +++ b/tests/functional/common_avatar_test.php @@ -32,7 +32,7 @@ abstract class phpbb_functional_common_avatar_test extends phpbb_functional_test $crawler = self::request('GET', 'adm/index.php?i=acp_board&mode=avatar&sid=' . $this->sid); // Check the default entries we should have $this->assertContainsLang('ALLOW_GRAVATAR', $crawler->text()); - $this->assertContainsLang('ALLOW_REMOTE', $crawler->text()); + $this->assertContainsLang('ALLOW_REMOTE_UPLOAD', $crawler->text()); $this->assertContainsLang('ALLOW_AVATARS', $crawler->text()); $this->assertContainsLang('ALLOW_LOCAL', $crawler->text()); diff --git a/tests/functional/common_groups_test.php b/tests/functional/common_groups_test.php index 6c6572af62..950db24767 100644 --- a/tests/functional/common_groups_test.php +++ b/tests/functional/common_groups_test.php @@ -43,7 +43,7 @@ abstract class phpbb_functional_common_groups_test extends phpbb_functional_test $crawler = self::request('GET', 'adm/index.php?i=board&mode=avatar&sid=' . $this->sid); // Check the default entries we should have - $this->assertContains($this->lang('ALLOW_REMOTE'), $crawler->text()); + $this->assertContains($this->lang('ALLOW_REMOTE_UPLOAD'), $crawler->text()); $this->assertContains($this->lang('ALLOW_AVATARS'), $crawler->text()); $this->assertContains($this->lang('ALLOW_LOCAL'), $crawler->text()); |
