Skip to content

Commit 9b093c9

Browse files
committed
minor symfony#17810 fix YAML syntax in functional tests config (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- fix YAML syntax in functional tests config | Q | A | ------------- | --- | Fixed tickets | | License | MIT see failing tests in symfony#17809 Commits ------- d9af4bc fix YAML syntax in functional tests config
2 parents 3f749d6 + d9af4bc commit 9b093c9

File tree

2 files changed

+4
-4
lines changed
  • src/Symfony/Bundle
    • FrameworkBundle/Tests/DependencyInjection/Fixtures/yml
    • SecurityBundle/Tests/Functional/app/config

2 files changed

+4
-4
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ framework:
1313
only_exceptions: true
1414
enabled: false
1515
router:
16-
resource: %kernel.root_dir%/config/routing.xml
16+
resource: '%kernel.root_dir%/config/routing.xml'
1717
type: xml
1818
session:
1919
storage_id: session.storage.native
@@ -54,5 +54,5 @@ framework:
5454
annotations:
5555
cache: file
5656
debug: true
57-
file_cache_dir: %kernel.cache_dir%/annotations
57+
file_cache_dir: '%kernel.cache_dir%/annotations'
5858
ide: file%%link%%format

src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ framework:
33

44
# Twig Configuration
55
twig:
6-
debug: %kernel.debug%
7-
strict_variables: %kernel.debug%
6+
debug: '%kernel.debug%'
7+
strict_variables: '%kernel.debug%'

0 commit comments

Comments
 (0)