Skip to content

Commit

Permalink
MISC: missed importing the config in a couple of places
Browse files Browse the repository at this point in the history
  • Loading branch information
yivi committed Dec 19, 2023
1 parent e07540a commit 87f5040
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/Functional/ServiceIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public function testGithubConverter(): void
self::bootKernel([
'config' => static function (TestKernel $kernel): void {
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/configuration_multiple_converters.yaml');
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/framework-config.yaml');
},
]);
$container = self::getContainer();
Expand All @@ -69,6 +70,7 @@ public function testCommonmarkWithOptions(): void
self::bootKernel([
'config' => static function (TestKernel $kernel): void {
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/configuration_multiple_converters.yaml');
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/framework-config.yaml');
},
]);
$container = self::getContainer();
Expand Down
1 change: 1 addition & 0 deletions tests/Functional/TwigIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public function testGithubConverter(): void
self::bootKernel([
'config' => static function (TestKernel $kernel): void {
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/configuration_multiple_converters.yaml');
$kernel->addTestConfig(__DIR__.'/../Fixtures/config/framework-config.yaml');
},
]);
$container = self::getContainer();
Expand Down

0 comments on commit 87f5040

Please sign in to comment.