minor #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 #17809

Commits
-------

d9af4bc fix YAML syntax in functional tests config
This commit is contained in:
Fabien Potencier 2016-02-16 08:14:17 +01:00
commit 9b093c9744
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ framework:
only_exceptions: true
enabled: false
router:
resource: %kernel.root_dir%/config/routing.xml
resource: '%kernel.root_dir%/config/routing.xml'
type: xml
session:
storage_id: session.storage.native
@ -54,5 +54,5 @@ framework:
annotations:
cache: file
debug: true
file_cache_dir: %kernel.cache_dir%/annotations
file_cache_dir: '%kernel.cache_dir%/annotations'
ide: file%%link%%format

View File

@ -3,5 +3,5 @@ framework:
# Twig Configuration
twig:
debug: %kernel.debug%
strict_variables: %kernel.debug%
debug: '%kernel.debug%'
strict_variables: '%kernel.debug%'