File tree 1 file changed +2
-2
lines changed
tests/SourceRepositoryTypes
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ public function it_can_fetch_github_tag_asset_latest_release(): void
230
230
config (['self-update.repository_types.github.package_file_name ' => 'release.zip ' ]);
231
231
232
232
/** @var GithubTagType $github */
233
- $ github = ( resolve (GithubRepositoryType::class) )->create ();
233
+ $ github = resolve (GithubRepositoryType::class)->create ();
234
234
235
235
Http::fakeSequence ()
236
236
->pushResponse ($ this ->getResponse200Type ('tag_asset ' ))
@@ -248,7 +248,7 @@ public function it_can_fetch_github_tag_regex_asset_latest_release(): void
248
248
config (['self-update.repository_types.github.package_file_name ' => 'regex:releaseV\d+\.\d+\.\d+\.zip ' ]);
249
249
250
250
/** @var GithubTagType $github */
251
- $ github = ( resolve (GithubRepositoryType::class) )->create ();
251
+ $ github = resolve (GithubRepositoryType::class)->create ();
252
252
253
253
Http::fakeSequence ()
254
254
->pushResponse ($ this ->getResponse200Type ('tag_regex_asset ' ))
You can’t perform that action at this time.
0 commit comments