From af3cce7d2e490ead821fcbdb54b4772b4913ee1d Mon Sep 17 00:00:00 2001 From: mike Date: Thu, 10 Dec 2015 22:01:57 +0100 Subject: [PATCH] Fix the yml parser issue with unescaped backslash in double quoted string https://github.com/symfony/yaml/blob/master/CHANGELOG.md#300 --- .../Tests/Configuration/_files/config_migrations_list.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Doctrine/DBAL/Migrations/Tests/Configuration/_files/config_migrations_list.yml b/tests/Doctrine/DBAL/Migrations/Tests/Configuration/_files/config_migrations_list.yml index d8367858cd..fc11ab577e 100644 --- a/tests/Doctrine/DBAL/Migrations/Tests/Configuration/_files/config_migrations_list.yml +++ b/tests/Doctrine/DBAL/Migrations/Tests/Configuration/_files/config_migrations_list.yml @@ -2,6 +2,6 @@ name: Doctrine Sandbox Migrations table_name: doctrine_migration_versions_test migrations: - - { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version1Test", "version": "Version1Test" } - - { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version2Test", "version": "Version2Test" } - - { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version3Test", "version": "Version3Test" } + - { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version1Test', 'version': 'Version1Test' } + - { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version2Test', 'version': 'Version2Test' } + - { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version3Test', 'version': 'Version3Test' }