File tree 1 file changed +2
-2
lines changed
src/Symfony/Bundle/FrameworkBundle/Tests/Functional
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
14
14
use Doctrine \Common \Annotations \AnnotationReader ;
15
15
use Doctrine \Common \Annotations \CachedReader ;
16
- use Symfony \Component \Templating \EngineInterface ;
16
+ use Symfony \Component \Templating \EngineInterface as ComponentEngineInterface ;
17
17
use Symfony \Bundle \FrameworkBundle \Templating \EngineInterface as FrameworkBundleEngineInterface ;
18
18
19
19
class AutowiringTypesTest extends WebTestCase
@@ -43,7 +43,7 @@ public function testTemplatingAutowiring()
43
43
44
44
$ autowiredServices = $ container ->get ('test.autowiring_types.autowired_services ' );
45
45
$ this ->assertInstanceOf (FrameworkBundleEngineInterface::class, $ autowiredServices ->getFrameworkBundleEngine ());
46
- $ this ->assertInstanceOf (EngineInterface ::class, $ autowiredServices ->getEngine ());
46
+ $ this ->assertInstanceOf (ComponentEngineInterface ::class, $ autowiredServices ->getEngine ());
47
47
}
48
48
49
49
protected static function createKernel (array $ options = array ())
You can’t perform that action at this time.
0 commit comments