Skip to content

Commit f536c8f

Browse files
committed
Fix build
1 parent 9bd4e02 commit f536c8f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Symfony/NeonTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ public function testExtensionNeon(): void
1919

2020
], []);
2121
$parameters = $container->getParameters();
22-
$this->assertArrayHasKey('rootDir', $parameters);
23-
$this->assertSame(realpath(__DIR__ . '/../../vendor/phpstan/phpstan'), $parameters['rootDir']);
22+
self::assertArrayHasKey('rootDir', $parameters);
23+
self::assertSame(realpath(__DIR__ . '/../../vendor/phpstan/phpstan'), $parameters['rootDir']);
2424

25-
$this->assertArrayHasKey('symfony', $parameters);
26-
$this->assertSame([
25+
self::assertArrayHasKey('symfony', $parameters);
26+
self::assertSame([
2727
'container_xml_path' => __DIR__ . '/container.xml',
2828
'constant_hassers' => true,
2929
'console_application_loader' => null,

0 commit comments

Comments
 (0)