Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert changes to CommandHelperTest
  • Loading branch information
staabm committed Nov 10, 2019
commit 348143f99add65fb8b7a0062230a8ea62ece632b
2 changes: 1 addition & 1 deletion tests/PHPStan/Command/CommandHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function testResolveRelativePaths(
$parameters = $result->getContainer()->getParameters();
foreach ($expectedParameters as $name => $expectedValue) {
$this->assertArrayHasKey($name, $parameters);
$this->assertSamePaths($expectedValue, $parameters[$name]);
$this->assertSame($expectedValue, $parameters[$name]);
}
}

Expand Down