Skip to content

Commit

Permalink
Merge pull request #448 from jordisala1991/hotfix/fix-test
Browse files Browse the repository at this point in the history
Fix return value for getBundle function in tests
  • Loading branch information
garak authored Oct 9, 2021
2 parents 9d0652d + 253817c commit 14ce286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Provider/BuilderAliasProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private function createMockKernelForStub()
$kernel->expects($this->once())
->method('getBundle')
->with('FooBundle', false)
->willReturn([$bundle])
->willReturn($bundle)
;

return $kernel;
Expand Down

0 comments on commit 14ce286

Please sign in to comment.