Skip to content

Commit 98acc40

Browse files
committed
Fix prefer-lowest, again
1 parent 2c3ab99 commit 98acc40

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

test/End2End/App/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ framework:
44
test: ~
55

66
services:
7-
test.hub:
7+
test.hub:
88
alias: Sentry\State\HubInterface
99
public: true
1010

test/End2End/App/routing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
exception:
22
path: /exception
3-
defaults: { _controller: '\Sentry\SentryBundle\Test\End2End\App\Controller\MainController::exception' }
3+
defaults: { _controller: 'Sentry\SentryBundle\Test\End2End\App\Controller\MainController::exception' }
44

55
200:
66
path: /200
7-
defaults: { _controller: '\Sentry\SentryBundle\Test\End2End\App\Controller\MainController::index' }
7+
defaults: { _controller: 'Sentry\SentryBundle\Test\End2End\App\Controller\MainController::index' }
88

99
secured200:
1010
path: /secured/200
11-
defaults: { _controller: '\Sentry\SentryBundle\Test\End2End\App\Controller\MainController::index' }
11+
defaults: { _controller: 'Sentry\SentryBundle\Test\End2End\App\Controller\MainController::index' }
1212

1313
subrequest:
1414
path: /subrequest
15-
defaults: { _controller: '\Sentry\SentryBundle\Test\End2End\App\Controller\MainController::subrequest' }
15+
defaults: { _controller: 'Sentry\SentryBundle\Test\End2End\App\Controller\MainController::subrequest' }

test/End2End/End2EndTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ class_alias(TestCase::class, \PHPUnit_Framework_TestCase::class);
1414

1515
class End2EndTest extends WebTestCase
1616
{
17-
protected function setUp(): void
18-
{
19-
static::$class = Kernel::class;
20-
21-
parent::setUp();
22-
}
23-
2417
protected static function getKernelClass(): string
2518
{
2619
return Kernel::class;

0 commit comments

Comments
 (0)