File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ private function supportsHubId(): bool
3535 }
3636 }
3737
38- return true ;
38+ return false ;
3939 } catch (\Exception $ e ) {
4040 return false ;
4141 }
Original file line number Diff line number Diff line change 88use Symfony \Bundle \FrameworkBundle \Client ;
99use Symfony \Bundle \FrameworkBundle \KernelBrowser ;
1010use Symfony \Bundle \FrameworkBundle \Test \WebTestCase ;
11- use Symfony \Component \Config \Definition \Exception \InvalidConfigurationException ;
1211
1312if (!class_exists (KernelBrowser::class) && class_exists (Client::class)) {
1413 class_alias (Client::class, KernelBrowser::class);
@@ -34,14 +33,7 @@ protected static function getKernelClass(): string
3433 */
3534 public function testLogMessagesBufferedAndFlushedAfterKernelTermination (): void
3635 {
37- try {
38- $ client = static ::createClient (['debug ' => false ]);
39- } catch (InvalidConfigurationException $ e ) {
40- if (str_starts_with ($ e ->getMessage (), 'Unrecognized option "hub_id" under "monolog.handlers.sentry" ' )) {
41- $ this ->markTestSkipped ('Skipped because "hub_id" option does not exist for this PHP/Symfony version ' );
42- }
43- $ this ->fail ();
44- }
36+ $ client = static ::createClient (['debug ' => false ]);
4537
4638 $ client ->request ('GET ' , '/buffer-flush ' );
4739
You can’t perform that action at this time.
0 commit comments