@@ -75,7 +75,7 @@ public function testInitializeContainerClearsOldContainers()
7575 $ kernel ->boot ();
7676
7777 $ containerDir = __DIR__ .'/Fixtures/var/cache/custom/ ' .substr (\get_class ($ kernel ->getContainer ()), 0 , 16 );
78- $ this ->assertTrue (unlink (__DIR__ .'/Fixtures/var/cache/custom/FixturesSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' ));
78+ $ this ->assertTrue (unlink (__DIR__ .'/Fixtures/var/cache/custom/TestsSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' ));
7979 $ this ->assertFileExists ($ containerDir );
8080 $ this ->assertFileNotExists ($ containerDir .'.legacy ' );
8181
@@ -312,7 +312,7 @@ public function testGetName()
312312 {
313313 $ kernel = new KernelForTest ('test ' , true );
314314
315- $ this ->assertEquals ('HttpKernel ' , $ kernel ->getName ());
315+ $ this ->assertEquals ('Fixtures ' , $ kernel ->getName ());
316316 }
317317
318318 /**
@@ -533,14 +533,14 @@ public function testKernelReset()
533533
534534 $ containerClass = \get_class ($ kernel ->getContainer ());
535535 $ containerFile = (new \ReflectionClass ($ kernel ->getContainer ()))->getFileName ();
536- unlink (__DIR__ .'/Fixtures/var/cache/custom/FixturesSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' );
536+ unlink (__DIR__ .'/Fixtures/var/cache/custom/TestsSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' );
537537
538538 $ kernel = new CustomProjectDirKernel ();
539539 $ kernel ->boot ();
540540
541541 $ this ->assertInstanceOf ($ containerClass , $ kernel ->getContainer ());
542542 $ this ->assertFileExists ($ containerFile );
543- unlink (__DIR__ .'/Fixtures/var/cache/custom/FixturesSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' );
543+ unlink (__DIR__ .'/Fixtures/var/cache/custom/TestsSymfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer .php.meta ' );
544544
545545 $ kernel = new CustomProjectDirKernel (function ($ container ) { $ container ->register ('foo ' , 'stdClass ' )->setPublic (true ); });
546546 $ kernel ->boot ();
0 commit comments