Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jun 28, 2024
1 parent 53fa526 commit e7be042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SourceRepositoryTypes/GithubRepositoryTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function it_can_fetch_github_tag_asset_latest_release(): void
config(['self-update.repository_types.github.package_file_name' => 'release.zip']);

/** @var GithubTagType $github */
$github = (resolve(GithubRepositoryType::class))->create();
$github = resolve(GithubRepositoryType::class)->create();

Http::fakeSequence()
->pushResponse($this->getResponse200Type('tag_asset'))
Expand All @@ -248,7 +248,7 @@ public function it_can_fetch_github_tag_regex_asset_latest_release(): void
config(['self-update.repository_types.github.package_file_name' => 'regex:releaseV\d+\.\d+\.\d+\.zip']);

/** @var GithubTagType $github */
$github = (resolve(GithubRepositoryType::class))->create();
$github = resolve(GithubRepositoryType::class)->create();

Http::fakeSequence()
->pushResponse($this->getResponse200Type('tag_regex_asset'))
Expand Down

0 comments on commit e7be042

Please sign in to comment.