8000 minor #26782 [FrameworkBundle] Fix validation configuration default t… · symfony/symfony@cffd97a · GitHub
[go: up one dir, main page]

Skip to content

Commit cffd97a

Browse files
committed
minor #26782 [FrameworkBundle] Fix validation configuration default test case (sroze)
This PR was merged into the 4.1-dev branch. Discussion ---------- [FrameworkBundle] Fix validation configuration default test case | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | ø | License | MIT This test case wasn't updated after a change in the PR to automatically enable the validation middleware based on the interface. Commits ------- 235e037 Fix validation configuration default test case
2 parents d5b88eb + 235e037 commit cffd97a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphor
259259
'entity_manager_name' => null,
260260
),
261261
'validation' => array(
262-
'enabled' => false,
262+
'enabled' => !class_exists(FullStack::class),
263263
),
264264
),
265265
),

0 commit comments

Comments
 (0)
0