@@ -41,7 +41,7 @@ protected function setUp()
4141
4242 public function testFixturesLoader () : void
4343 {
44- $ kernel = new IntegrationTestKernel ('dev ' , true );
44+ $ kernel = new IntegrationTestKernel ('dev ' , false );
4545 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
4646 $ c ->autowire (OtherFixtures::class)
4747 ->addTag (FixturesCompilerPass::FIXTURE_TAG );
@@ -74,7 +74,7 @@ public function testFixturesLoaderWhenFixtureHasDependencyThatIsNotYetLoaded() :
7474 {
7575 // See https://github.com/doctrine/DoctrineFixturesBundle/issues/215
7676
77- $ kernel = new IntegrationTestKernel ('dev ' , true );
77+ $ kernel = new IntegrationTestKernel ('dev ' , false );
7878 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
7979 $ c ->autowire (WithDependenciesFixtures::class)
8080 ->addTag (FixturesCompilerPass::FIXTURE_TAG );
@@ -116,7 +116,7 @@ public function testExceptionWithDependenciesWithRequiredArguments() : void
116116 $ this ->markTestSkipped ();
117117 }
118118
119- $ kernel = new IntegrationTestKernel ('dev ' , true );
119+ $ kernel = new IntegrationTestKernel ('dev ' , false );
120120 $ kernel ->addServices (static function (ContainerBuilder $ c ) {
121121 $ c ->autowire (DependentOnRequiredConstructorArgsFixtures::class)
122122 ->addTag (FixturesCompilerPass::FIXTURE_TAG );
@@ -147,7 +147,7 @@ public function testExceptionIfDependentFixtureNotWired() : void
147147 $ this ->markTestSkipped ();
148148 }
149149
150- $ kernel = new IntegrationTestKernel ('dev ' , true );
150+ $ kernel = new IntegrationTestKernel ('dev ' , false );
151151 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
152152 $ c ->autowire (DependentOnRequiredConstructorArgsFixtures::class)
153153 ->addTag (FixturesCompilerPass::FIXTURE_TAG );
@@ -165,7 +165,7 @@ public function testExceptionIfDependentFixtureNotWired() : void
165165
166166 public function testFixturesLoaderWithGroupsOptionViaInterface () : void
167167 {
168- $ kernel = new IntegrationTestKernel ('dev ' , true );
168+ $ kernel = new IntegrationTestKernel ('dev ' , false );
169169 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
170170 // has a "staging" group via the getGroups() method
171171 $ c ->autowire (OtherFixtures::class)
@@ -197,7 +197,7 @@ public function testFixturesLoaderWithGroupsOptionViaInterface() : void
197197
198198 public function testFixturesLoaderWithGroupsOptionViaTag () : void
199199 {
200- $ kernel = new IntegrationTestKernel ('dev ' , true );
200+ $ kernel = new IntegrationTestKernel ('dev ' , false );
201201 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
202202 // has a "staging" group via the getGroups() method
203203 $ c ->autowire (OtherFixtures::class)
@@ -224,7 +224,7 @@ public function testFixturesLoaderWithGroupsOptionViaTag() : void
224224
225225 public function testLoadFixturesViaGroupWithMissingDependency () : void
226226 {
227- $ kernel = new IntegrationTestKernel ('dev ' , true );
227+ $ kernel = new IntegrationTestKernel ('dev ' , false );
228228 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
229229 // has a "staging" group via the getGroups() method
230230 $ c ->autowire (OtherFixtures::class)
@@ -250,7 +250,7 @@ public function testLoadFixturesViaGroupWithMissingDependency() : void
250250
251251 public function testLoadFixturesViaGroupWithFulfilledDependency () : void
252252 {
253- $ kernel = new IntegrationTestKernel ('dev ' , true );
253+ $ kernel = new IntegrationTestKernel ('dev ' , false );
254254 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
255255 // has a "staging" group via the getGroups() method
256256 $ c ->autowire (OtherFixtures::class)
@@ -283,7 +283,7 @@ public function testLoadFixturesViaGroupWithFulfilledDependency() : void
283283
284284 public function testLoadFixturesByShortName () : void
285285 {
286- $ kernel = new IntegrationTestKernel ('dev ' , true );
286+ $ kernel = new IntegrationTestKernel ('dev ' , false );
287287 $ kernel ->addServices (static function (ContainerBuilder $ c ) : void {
288288 // has a "staging" group via the getGroups() method
289289 $ c ->autowire (OtherFixtures::class)
0 commit comments