fixed a test that do not pass onMac

This commit is contained in:
Fabien Potencier 2016-09-18 21:41:39 -07:00
parent a86583d226
commit fb0deaa177

View File

@ -1376,7 +1376,7 @@ class ProcessTest extends \PHPUnit_Framework_TestCase
$expected = array('BAR' => 'BAZ', 'FOO' => 'BAR');
$env = array_intersect_key(unserialize($process->getOutput()), $expected);
$this->assertSame($expected, $env);
$this->assertEquals($expected, $env);
}
public function testInheritEnvDisabled()