Skip to content

Commit

Permalink
NGSTACK-843 fix refactor mistake wrong file loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Katarina Miočić committed Apr 22, 2024
1 parent ffae211 commit d738741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/lib/Integration/SetupFactory/RegressionSolr.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected function externalBuildContainer(ContainerBuilder $containerBuilder): v

$testConfigPath = __DIR__ . '/../Resources/config/';
$loader = new YamlFileLoader($containerBuilder, new FileLocator($testConfigPath));
$loader->load('indexable_field_types.yaml');
$loader->load('services.yaml');

// Needs to be added first because other passes depend on it
$containerBuilder->addCompilerPass(new Compiler\TagSubdocumentCriterionVisitorsPass());
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/Integration/SetupFactory/Solr.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected function externalBuildContainer(ContainerBuilder $containerBuilder): v

$testConfigPath = __DIR__ . '/../Resources/config/';
$loader = new YamlFileLoader($containerBuilder, new FileLocator($testConfigPath));
$loader->load('indexable_field_types.yaml');
$loader->load('services.yaml');
$loader->load('event_dispatcher_override.yaml');

// Needs to be added first because other passes depend on it
Expand Down

0 comments on commit d738741

Please sign in to comment.