From ef11259d003f60398b2777755e7d2d6184f1d655 Mon Sep 17 00:00:00 2001 From: salahhusa9 Date: Sat, 11 Nov 2023 11:06:45 +0000 Subject: [PATCH] Fix styling --- tests/GitTest.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/GitTest.php b/tests/GitTest.php index bb167d3..b787e7b 100644 --- a/tests/GitTest.php +++ b/tests/GitTest.php @@ -89,7 +89,7 @@ public function test_get_current_tag_failed(): void output: 'Test output', errorOutput: 'Test error output', exitCode: 1, - ) + ), ]); // change config git_path to git, because git path changed between windows and linux @@ -108,7 +108,7 @@ public function test_get_git_path(): void public function test_git_auth(): void { Process::fake([ - 'git remote set-url origin https://'.config('updater.github_username').':'.config('updater.github_token').'@github.com/'.config('updater.github_username').'/'.config('updater.github_repository').'.git' => Process::result('') + 'git remote set-url origin https://'.config('updater.github_username').':'.config('updater.github_token').'@github.com/'.config('updater.github_username').'/'.config('updater.github_repository').'.git' => Process::result(''), ]); config()->set('updater.git_path', 'git'); @@ -126,7 +126,7 @@ public function test_git_auth_failed(): void output: 'Test output', errorOutput: 'Test error output', exitCode: 1, - ) + ), ]); config()->set('updater.git_path', 'git'); @@ -155,7 +155,7 @@ public function test_git_pull_failed(): void output: 'Test output', errorOutput: 'Test error output', exitCode: 1, - ) + ), ]); config()->set('updater.git_path', 'git'); @@ -184,7 +184,7 @@ public function test_git_checkout_failed(): void output: 'Test output', errorOutput: 'Test error output', exitCode: 1, - ) + ), ]); config()->set('updater.git_path', 'git'); @@ -213,7 +213,7 @@ public function test_git_fetch_failed(): void output: 'Test output', errorOutput: 'Test error output', exitCode: 1, - ) + ), ]); config()->set('updater.git_path', 'git');