1
0
Fork 0

remove env variable after test assertion

pull/5708/head
Rob Bast 2016-09-21 11:34:28 +02:00
parent 2c77fd6801
commit 2ef9cde060
No known key found for this signature in database
GPG Key ID: 73076E35E6165F39
1 changed files with 1 additions and 0 deletions

View File

@ -297,5 +297,6 @@ class ConfigTest extends \PHPUnit_Framework_TestCase
putenv('COMPOSER_PROCESS_TIMEOUT=0'); putenv('COMPOSER_PROCESS_TIMEOUT=0');
$config = new Config(true); $config = new Config(true);
$this->assertEquals(0, $config->get('process-timeout')); $this->assertEquals(0, $config->get('process-timeout'));
putenv('COMPOSER_PROCESS_TIMEOUT');
} }
} }