From 96281e712deb80cd004eea905ed3b066f6929e09 Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Tue, 20 Oct 2020 19:05:16 +1300 Subject: [PATCH] BUG Escape % to work with Symhony 4 --- behat.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/behat.yml b/behat.yml index 657b759d..b34a241d 100644 --- a/behat.yml +++ b/behat.yml @@ -2,7 +2,7 @@ default: suites: cms: paths: - - '%paths.modules.cms%/tests/behat/features' + - "%paths.modules.cms%/tests/behat/features" contexts: - SilverStripe\Framework\Tests\Behaviour\FeatureContext - SilverStripe\Framework\Tests\Behaviour\CmsFormsContext @@ -13,7 +13,7 @@ default: - SilverStripe\CMS\Tests\Behaviour\ThemeContext - SilverStripe\CMS\Tests\Behaviour\FixtureContext: # Note: double indent for args is intentional - - '%paths.modules.cms%/tests/behat/features/files/' + - "%paths.modules.cms%/tests/behat/features/files/" extensions: SilverStripe\BehatExtension\MinkExtension: @@ -25,5 +25,5 @@ default: browser_name: chrome SilverStripe\BehatExtension\Extension: - screenshot_path: '%paths.base%/artifacts/screenshots' + screenshot_path: "%paths.base%/artifacts/screenshots" bootstrap_file: "tests/behat/serve-bootstrap.php"