aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-01-15 18:31:27 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-01-15 18:31:27 +0100
commit0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c (patch)
treead10421473d02d20de29d04a4a2d33f797acf271 /tests/extension
parent8e584dfa6b139fb415e6c18e5daf8fe8f323a5ce (diff)
parent9dc1729e379691c97b319a12912dc48ad779a286 (diff)
downloadforums-0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c.tar
forums-0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c.tar.gz
forums-0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c.tar.bz2
forums-0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c.tar.xz
forums-0178c27092762cf2ca8bf355e6f7e6eaf5cf0c3c.zip
Merge pull request #3626 from imkingdavid/ticket/13733
[ticket/13733] Allow non-migration files inside migrations folder
Diffstat (limited to 'tests/extension')
-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));
}
}