Skip to content

Commit 253817c

Browse files
committed
Fix return value for getBundle function in tests
1 parent 9d0652d commit 253817c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Provider/BuilderAliasProviderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private function createMockKernelForStub()
213213
$kernel->expects($this->once())
214214
->method('getBundle')
215215
->with('FooBundle', false)
216-
->willReturn([$bundle])
216+
->willReturn($bundle)
217217
;
218218

219219
return $kernel;

0 commit comments

Comments
 (0)