Skip to content

Commit

Permalink
Fix session on sortable behavior bundle tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jordisala1991 committed Jun 2, 2021
1 parent 863cc79 commit 2dbb629
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
dependencies: lowest
- php: '8.0'
dependencies: highest
composer-options: "--ignore-platform-req=php"
composer-options: --ignore-platform-req=php
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
Expand Down
4 changes: 4 additions & 0 deletions packages/sortable-behavior-bundle/tests/App/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ protected function configureContainer(ContainerBuilder $container, LoaderInterfa
'test' => true,
'router' => ['utf8' => true],
'secret' => 'secret',
'session' => [
'enabled' => true,
'storage_id' => 'session.storage.mock_file',
],
]);

$container->loadFromExtension('security', [
Expand Down

0 comments on commit 2dbb629

Please sign in to comment.