aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/extension_acp_test.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-05-12 22:44:59 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-05-12 22:44:59 +0200
commitbd6cebfe3882d5df810eb1725a10cd64f5473240 (patch)
tree03aabb39e3d233430ae629412b2a771874cea60d /tests/functional/extension_acp_test.php
parent7e70eec5a37ddfe112e12b976821c5b944128d32 (diff)
downloadforums-bd6cebfe3882d5df810eb1725a10cd64f5473240.tar
forums-bd6cebfe3882d5df810eb1725a10cd64f5473240.tar.gz
forums-bd6cebfe3882d5df810eb1725a10cd64f5473240.tar.bz2
forums-bd6cebfe3882d5df810eb1725a10cd64f5473240.tar.xz
forums-bd6cebfe3882d5df810eb1725a10cd64f5473240.zip
[ticket/11465] Increase count of disabled extensions to 5 in functional test
The ACP function test checks the amount of disabled extensions. Due to the added disabled extension for the tests of the acp_modules method get_module_infos(), this needed to be increased from 4 to 5. PHPBB3-11465
Diffstat (limited to 'tests/functional/extension_acp_test.php')
-rw-r--r--tests/functional/extension_acp_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/extension_acp_test.php b/tests/functional/extension_acp_test.php
index 1879cbd62c..1b406e5042 100644
--- a/tests/functional/extension_acp_test.php
+++ b/tests/functional/extension_acp_test.php
@@ -112,7 +112,7 @@ class phpbb_functional_extension_acp_test extends phpbb_functional_test_case
$crawler = $this->request('GET', 'adm/index.php?i=acp_extensions&mode=main&sid=' . $this->sid);
$this->assertCount(1, $crawler->filter('.ext_enabled'));
- $this->assertCount(4, $crawler->filter('.ext_disabled'));
+ $this->assertCount(5, $crawler->filter('.ext_disabled'));
$this->assertContains('phpBB Foo Extension', $crawler->filter('.ext_enabled')->eq(0)->text());
$this->assertContainsLang('PURGE', $crawler->filter('.ext_enabled')->eq(0)->text());