Skip to content

Commit d2fb85c

Browse files
committed
minor #23172 Fix AutowiringTypesTest transient tests (nicolas-grekas)
This PR was merged into the 3.3 branch. Discussion ---------- Fix AutowiringTypesTest transient tests | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - In 3.3, we have a race condition because FrameworkBundle and SecurityBundle use the same test folder for their respective AutowiringTypesTest. Commits ------- 408e56e404 Fix AutowiringTypesTest transient tests
2 parents 66934d9 + 314b6d9 commit d2fb85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Functional/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ protected static function createKernel(array $options = array())
6868

6969
protected static function getVarDir()
7070
{
71-
return substr(strrchr(get_called_class(), '\\'), 1);
71+
return 'FB'.substr(strrchr(get_called_class(), '\\'), 1);
7272
}
7373
}

0 commit comments

Comments
 (0)