Fixed typo in test class

This commit is contained in:
Alexander Makarov
2014-11-04 13:49:47 +03:00
parent 136c976e56
commit b0c88d337e

View File

@ -65,10 +65,10 @@ class ConsoleTest extends TestCase
echo 'a';
Console::endAnsiFormat();
echo 'a';
$ouput = Console::stripAnsiFormat(ob_get_clean());
$output = Console::stripAnsiFormat(ob_get_clean());
ob_implicit_flush(true);
// $output = str_replace("\033", 'X003', $ouput );// uncomment for debugging
$this->assertEquals(str_repeat('a', 25), $ouput);
// $output = str_replace("\033", 'X003', $output );// uncomment for debugging
$this->assertEquals(str_repeat('a', 25), $output);
}
/* public function testScreenSize()