From bedbe7030118a6fd3e1e2e9fab866b1f06b71569 Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Tue, 23 Aug 2016 20:13:13 +0200 Subject: [PATCH] fix test --- tests/SyncCommandTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/SyncCommandTest.php b/tests/SyncCommandTest.php index 351d8de..1a23e4d 100644 --- a/tests/SyncCommandTest.php +++ b/tests/SyncCommandTest.php @@ -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\') }}'); @@ -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')); } }