aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/extension_base_test.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2015-05-23 21:13:30 -0400
committerDavid King <imkingdavid@gmail.com>2015-05-23 21:13:30 -0400
commit65316cffafead1b0529dca50f4c110489615438a (patch)
tree12a15cc4dae89a762d02404d4a3211a98cb96077 /tests/extension/extension_base_test.php
parent4ecc13af83718e26e02afc9b8516a506ca5a26e1 (diff)
downloadforums-65316cffafead1b0529dca50f4c110489615438a.tar
forums-65316cffafead1b0529dca50f4c110489615438a.tar.gz
forums-65316cffafead1b0529dca50f4c110489615438a.tar.bz2
forums-65316cffafead1b0529dca50f4c110489615438a.tar.xz
forums-65316cffafead1b0529dca50f4c110489615438a.zip
[ticket/13733] Allow tests the skip class validation
PHPBB3-13733
Diffstat (limited to 'tests/extension/extension_base_test.php')
-rw-r--r--tests/extension/extension_base_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extension/extension_base_test.php b/tests/extension/extension_base_test.php
index eee38186db..898c11d902 100644
--- a/tests/extension/extension_base_test.php
+++ b/tests/extension/extension_base_test.php
@@ -74,6 +74,6 @@ class phpbb_extension_extension_base_test extends phpbb_test_case
public function test_suffix_get_classes($extension_name, $expected)
{
$extension = $this->extension_manager->get_extension($extension_name);
- $this->assertEquals($expected, self::$reflection_method_get_migration_file_list->invoke($extension));
+ $this->assertEquals($expected, self::$reflection_method_get_migration_file_list->invoke($extension, false));
}
}