From b24dc73497c9f5c91f3d0b36f75699700bbbc90c Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Tue, 20 Oct 2020 18:50:59 +1300 Subject: [PATCH] BUG Escape % symbole for Symphony 4 --- behat.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/behat.yml b/behat.yml index d8238ec0b..f74288345 100644 --- a/behat.yml +++ b/behat.yml @@ -9,7 +9,7 @@ default: suites: framework: paths: - - '%paths.modules.admin%/tests/behat/features' + - "%paths.modules.admin%/tests/behat/features" contexts: - SilverStripe\Framework\Tests\Behaviour\FeatureContext - SilverStripe\Framework\Tests\Behaviour\CmsFormsContext @@ -19,7 +19,7 @@ default: - SilverStripe\BehatExtension\Context\LoginContext - SilverStripe\BehatExtension\Context\FixtureContext: - - '%paths.modules.admin%/tests/behat/features/files/' + - "%paths.modules.admin%/tests/behat/features/files/" extensions: SilverStripe\BehatExtension\MinkExtension: @@ -30,5 +30,5 @@ default: wd_host: "http://127.0.0.1:9515" #chromedriver port SilverStripe\BehatExtension\Extension: - screenshot_path: '%paths.base%/artifacts/screenshots' + screenshot_path: "%paths.base%/artifacts/screenshots" bootstrap_file: "tests/behat/serve-bootstrap.php"