Explorar o código

Fix XdebugHandler test

johnstevenson %!s(int64=8) %!d(string=hai) anos
pai
achega
c1058cf37c
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tests/Composer/Test/XdebugHandlerTest.php

+ 2 - 2
tests/Composer/Test/XdebugHandlerTest.php

@@ -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()