Use Application::setTerminalDimensions in test to be more portable

This commit is contained in:
Grégoire Pineau 2014-06-15 01:41:47 +02:00
parent 9f7b4e9b46
commit fb5f760d6f
2 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,4 @@ php:
- 5.5
before_script:
- stty columns 150
- composer install --dev --prefer-source

View File

@ -12,6 +12,7 @@ class CarewTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
$this->carew = new Carew();
$this->carew->setTerminalDimensions(150, 40);
$this->carew->setAutoExit(false);
}