Merge pull request #9738 from open-sausages/pulls/4/fix-symfony-yml

BUG Escape % symbole for Symphony 4
This commit is contained in:
Steve Boyd 2020-10-21 09:18:31 +13:00 committed by GitHub
commit ed8bbd23ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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"