From fb0deaa1774ca99a246c97e05d3b9b0447dd9df8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 18 Sep 2016 21:41:39 -0700 Subject: [PATCH] fixed a test that do not pass onMac --- src/Symfony/Component/Process/Tests/ProcessTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index ac055d96f1..c0bc6d4859 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -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()