mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
Fixed typo in test class
This commit is contained in:
@ -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()
|
||||||
|
Reference in New Issue
Block a user