Skip to content

Commit 49f541f

Browse files
committed
Revert previous stupid change that broke the tests...
1 parent fe1d458 commit 49f541f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/UnitTest/SymfonyContainerBridgeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function testHasFallback()
1919
{
2020
$wrapper = new SymfonyContainerBridge();
2121

22-
$fallback = $this->getMockForAbstractClass(ContainerInterface::class);
22+
$fallback = $this->getMockForAbstractClass('Interop\Container\ContainerInterface');
2323
$fallback->expects($this->once())
2424
->method('has')
2525
->with('foo')
@@ -34,7 +34,7 @@ public function testGetFallback()
3434
{
3535
$wrapper = new SymfonyContainerBridge();
3636

37-
$fallback = $this->getMockForAbstractClass(ContainerInterface::class);
37+
$fallback = $this->getMockForAbstractClass('Interop\Container\ContainerInterface');
3838
$fallback->expects($this->once())
3939
->method('get')
4040
->with('foo')

0 commit comments

Comments
 (0)