Commit b0c88d33 by Alexander Makarov

Fixed typo in test class

parent 136c976e
...@@ -65,10 +65,10 @@ class ConsoleTest extends TestCase ...@@ -65,10 +65,10 @@ class ConsoleTest extends TestCase
echo 'a'; echo 'a';
Console::endAnsiFormat(); Console::endAnsiFormat();
echo 'a'; echo 'a';
$ouput = Console::stripAnsiFormat(ob_get_clean()); $output = Console::stripAnsiFormat(ob_get_clean());
ob_implicit_flush(true); ob_implicit_flush(true);
// $output = str_replace("\033", 'X003', $ouput );// uncomment for debugging // $output = str_replace("\033", 'X003', $output );// uncomment for debugging
$this->assertEquals(str_repeat('a', 25), $ouput); $this->assertEquals(str_repeat('a', 25), $output);
} }
/* public function testScreenSize() /* public function testScreenSize()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment