mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Fix XdebugHandler test
This commit is contained in:
parent
379fb70ad9
commit
c1058cf37c
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ class XdebugHandlerTest extends \PHPUnit_Framework_TestCase
|
|||
$xdebug = new XdebugHandlerMock($loaded);
|
||||
$xdebug->check();
|
||||
$this->assertTrue($xdebug->restarted);
|
||||
$this->assertNotEquals(false, getenv(IniHelper::ENV_ORIGINAL));
|
||||
$this->assertInternalType('string', getenv(IniHelper::ENV_ORIGINAL));
|
||||
}
|
||||
|
||||
public function testNoRestartWhenNotLoaded()
|
||||
|
@ -42,7 +42,7 @@ class XdebugHandlerTest extends \PHPUnit_Framework_TestCase
|
|||
$xdebug = new XdebugHandlerMock($loaded);
|
||||
$xdebug->check();
|
||||
$this->assertFalse($xdebug->restarted);
|
||||
$this->assertEquals(false, getenv(IniHelper::ENV_ORIGINAL));
|
||||
$this->assertFalse(getenv(IniHelper::ENV_ORIGINAL));
|
||||
}
|
||||
|
||||
public function testNoRestartWhenLoadedAndAllowed()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue