From 18875894ec046e48e8627a9c1b2158670eea70e9 Mon Sep 17 00:00:00 2001 From: LEZY Thomas Date: Wed, 28 May 2014 18:19:46 +0200 Subject: [ticket/12597] Fix constructor bug and servral doc blocs PHPBB3-12597 --- tests/console/cron/run_all_test.php | 9 --------- 1 file changed, 9 deletions(-) (limited to 'tests/console/cron/run_all_test.php') diff --git a/tests/console/cron/run_all_test.php b/tests/console/cron/run_all_test.php index b85d5eb901..5306d27094 100644 --- a/tests/console/cron/run_all_test.php +++ b/tests/console/cron/run_all_test.php @@ -31,7 +31,6 @@ class phpbb_console_command_cron_run_all_test extends phpbb_database_test_case public function setUp() { global $db, $config, $phpbb_root_path, $pathEx; - global $cron_num_exec; $db = $this->db = $this->new_dbal(); $config = $this->config = new \phpbb\config\config(array('cron_lock' => '0')); @@ -47,15 +46,11 @@ class phpbb_console_command_cron_run_all_test extends phpbb_database_test_case ); $this->cron_manager = new \phpbb\cron\manager($tasks, $phpbb_root_path, $pathEx); - $cron_num_exec = 0; - $this->assertSame('0', $config['cron_lock']); } public function test_normal_use() { - global $cron_num_exec; - $command_tester = $this->get_command_tester(); $command_tester->execute(array('command' => $this->command_name)); @@ -65,8 +60,6 @@ class phpbb_console_command_cron_run_all_test extends phpbb_database_test_case public function test_verbose_mode() { - global $cron_num_exec; - $command_tester = $this->get_command_tester(); $command_tester->execute(array('command' => $this->command_name, '--verbose' => true)); @@ -76,8 +69,6 @@ class phpbb_console_command_cron_run_all_test extends phpbb_database_test_case public function test_error_lock() { - global $cron_num_exec; - $this->lock->acquire(); $command_tester = $this->get_command_tester(); $command_tester->execute(array('command' => $this->command_name)); -- cgit v1.2.1