Behat / docs

Behat documentation repository
http://behat.org
28 stars 69 forks source link

Missing quotes in suites path code example #135

Closed dumitriucristian closed 4 years ago

dumitriucristian commented 4 years ago

In this documentation page https://behat.org/en/latest/user_guide/configuration/suites.html#suite-paths, sais that suites path should be declared as:

 - %paths.base%/features

but this will throw the following error :


The reserved indicator "%" cannot start a plain scalar; you need to quote the scalar at line 9 (near "- %paths.base%/features/register").

Quotes should be used, like this:

- "%paths.base%/features"

I used Symfony5 with Friends-of-Behat

pamil commented 4 years ago

Could you open a PR with this change?

dumitriucristian commented 4 years ago

done: https://github.com/Behat/docs/pull/136