Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Aug 23, 2016
1 parent 304489e commit bedbe70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SyncCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function testCommandOutputForMissingSubKey()

public function testItDoesntOverrideParentKey()
{
array_map('unlink', glob(__DIR__.'/views_temp/user/index.blade.php'));
array_map('unlink', glob(__DIR__.'/views_temp/user.blade.php'));

file_put_contents(__DIR__.'/views_temp/user.blade.php', '{{ trans(\'user.name\') }}');

Expand All @@ -86,6 +86,6 @@ public function testItDoesntOverrideParentKey()

$this->assertEquals(['middle' => 'middle'], $userENFile['name']);

array_map('unlink', glob(__DIR__.'/views_temp/user/index.blade.php'));
array_map('unlink', glob(__DIR__.'/views_temp/user.blade.php'));
}
}

0 comments on commit bedbe70

Please sign in to comment.