From e3118b4a6e7a2b0b05f871e8b2aa76c8feac844e Mon Sep 17 00:00:00 2001 From: Simon JAILLET Date: Thu, 6 Oct 2016 17:37:23 +0200 Subject: [PATCH] Removing some windows special behavior. --- src/Reporter/Terminal.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Reporter/Terminal.php b/src/Reporter/Terminal.php index 45a7f81f..3aba77ed 100644 --- a/src/Reporter/Terminal.php +++ b/src/Reporter/Terminal.php @@ -88,12 +88,6 @@ public function __construct($config = []) $this->_output = $config['output']; $this->useColors($config['colors']); - - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { - $this->_symbols['ok'] = 'V'; - $this->_symbols['err'] = 'X'; - $this->_symbols['dot'] = '.'; - } } /**