Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
salahhusa9 authored and github-actions[bot] committed Nov 11, 2023
1 parent aad3685 commit ef11259
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/GitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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');
Expand All @@ -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');
Expand Down Expand Up @@ -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');
Expand Down Expand Up @@ -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');
Expand Down Expand Up @@ -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');
Expand Down

0 comments on commit ef11259

Please sign in to comment.