diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-06-21 00:40:55 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-21 00:40:55 +0200 |
commit | 40d264654cead5a7ddceda1c58ff7140db3d041d (patch) | |
tree | a7ba8b8f356d61e680c008514c12df0b4289adfe | |
parent | 18bf45ab1b3f07fbed5c7d566766170ff0a71e8e (diff) | |
parent | 0404d3b910cc4c29da1d6457f8dd10fe5dd382b6 (diff) | |
download | forums-40d264654cead5a7ddceda1c58ff7140db3d041d.tar forums-40d264654cead5a7ddceda1c58ff7140db3d041d.tar.gz forums-40d264654cead5a7ddceda1c58ff7140db3d041d.tar.bz2 forums-40d264654cead5a7ddceda1c58ff7140db3d041d.tar.xz forums-40d264654cead5a7ddceda1c58ff7140db3d041d.zip |
Merge pull request #2631 from Nicofuma/ticket/12752
[ticket/12752] Cron list tests fail on windows with ansi support
* Nicofuma/ticket/12752:
[ticket/12752] Cron list tests fail on windows with ansi support
-rw-r--r-- | tests/console/cron/cron_list_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/console/cron/cron_list_test.php b/tests/console/cron/cron_list_test.php index 46705a585f..f04c14e847 100644 --- a/tests/console/cron/cron_list_test.php +++ b/tests/console/cron/cron_list_test.php @@ -98,6 +98,6 @@ class phpbb_console_command_cron_list_test extends phpbb_test_case $this->get_cron_manager($tasks); $this->command_tester = $this->get_command_tester(); - $this->command_tester->execute(array('command' => $this->command_name, '--no-ansi' => true)); + $this->command_tester->execute(array('command' => $this->command_name), array('decorated' => false)); } } |