From ab6c9775d33deceb87e06edc13585e6f345d3e74 Mon Sep 17 00:00:00 2001 From: LEZY Thomas Date: Thu, 5 Jun 2014 16:07:52 +0200 Subject: [PATCH] [ticket/12658] Fix typo and coding style mistakes PHPBB3-12658 --- tests/console/config/config_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/console/config/config_test.php b/tests/console/config/config_test.php index f9d7fe30e4..47e1691b5c 100644 --- a/tests/console/config/config_test.php +++ b/tests/console/config/config_test.php @@ -19,7 +19,7 @@ class phpbb_console_command_config_test extends phpbb_test_case protected $config; protected $command_name; protected $class_name; - protected $comand_namespace; + protected $command_namespace; public function setUp() { @@ -93,7 +93,7 @@ class phpbb_console_command_config_test extends phpbb_test_case 'key' => 'test_key', 'old' => 'old_value', 'new' => 'new_value', - '--dynamic' => false + '--dynamic' => false, )); $this->assertSame($this->config['test_key'], 'new_value');