Skip to content

Commit fb0deaa

Browse files
committed
fixed a test that do not pass onMac
1 parent a86583d commit fb0deaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Process/Tests/ProcessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ public function testInheritEnvEnabled()
13761376
$expected = array('BAR' => 'BAZ', 'FOO' => 'BAR');
13771377
$env = array_intersect_key(unserialize($process->getOutput()), $expected);
13781378

1379-
$this->assertSame($expected, $env);
1379+
$this->assertEquals($expected, $env);
13801380
}
13811381

13821382
public function testInheritEnvDisabled()

0 commit comments

Comments
 (0)