diff --git a/tests/ConsoleTest.php b/tests/ConsoleTest.php index d9d9bae..7c9d2eb 100644 --- a/tests/ConsoleTest.php +++ b/tests/ConsoleTest.php @@ -137,8 +137,7 @@ public function testColor() $string = $console->colorize('Hello World', Console::BOLD_BLUE, Console::RED); $this->assertContains('[1;34m', $string); $this->assertContains('[41m', $string); - $this->assertContains('[22;39m', $string); - $this->assertContains('[0;49m', $string); + $this->assertContains('[0m', $string); } public function testBadColor()