Skip to content

Commit 3b1c6ad

Browse files
authored
Apply fixes from StyleCI (#510)
1 parent 53fa526 commit 3b1c6ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/SourceRepositoryTypes/GithubRepositoryTypeTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public function it_can_fetch_github_tag_asset_latest_release(): void
230230
config(['self-update.repository_types.github.package_file_name' => 'release.zip']);
231231

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

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

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

253253
Http::fakeSequence()
254254
->pushResponse($this->getResponse200Type('tag_regex_asset'))

0 commit comments

Comments
 (0)