1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/12273] Fix method name of test and fix undefined index

PHPBB3-12273
This commit is contained in:
Joas Schilling
2014-04-20 17:08:06 +02:00
parent 5889255529
commit a2c3b2534a
2 changed files with 14 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ class phpbb_event_md_exporter_test extends phpbb_test_case
$this->assertGreaterThan(0, $exporter->crawl_eventsmd('docs/events.md', $filter));
}
static public function crawl_adm_files_data()
static public function crawl_template_file_data()
{
global $phpbb_root_path;
$exporter = new \phpbb\event\md_exporter($phpbb_root_path);
@@ -52,9 +52,9 @@ class phpbb_event_md_exporter_test extends phpbb_test_case
}
/**
* @dataProvider crawl_adm_files_data
* @dataProvider crawl_template_file_data
*/
public function test_crawl_adm_files($filter, $file)
public function test_crawl_template_file($filter, $file)
{
global $phpbb_root_path;
$exporter = new \phpbb\event\md_exporter($phpbb_root_path);