Skip to content

Commit

Permalink
Fix bug in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-helmich committed May 8, 2016
1 parent 7c88229 commit 44a215f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function testLinterCreatesExpectedOutput($typoscriptFile, array $expected
$localConfigFilename = dirname($typoscriptFile) . '/tslint.yml';
$localConfigData = [];
if (file_exists($localConfigFilename)) {
$localConfigData = Yaml::parse($localConfigFilename);
$localConfigData = Yaml::parse(file_get_contents($localConfigFilename));
}

$globalConfigData = Yaml::parse(file_get_contents(__DIR__ . '/Fixtures/tslint.dist.yml'));
Expand Down

0 comments on commit 44a215f

Please sign in to comment.