Skip to content

Commit d8e6521

Browse files
committed
slash
1 parent efc29fd commit d8e6521

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

features/config-create.feature

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,16 +263,16 @@ Feature: Create a wp-config file
263263
Given an empty directory
264264
And WP files
265265
266-
When I run `wp config create --skip-check --dbname=somedb --dbuser=someuser --dbpass="my\\password"`
266+
When I run `wp config create --skip-check --dbname=somedb --dbuser=someuser --dbpass="my\password"`
267267
Then the wp-config.php file should contain:
268268
"""
269-
define( 'DB_PASSWORD', 'my\\\\password' )
269+
define( 'DB_PASSWORD', 'my\\password' )
270270
"""
271271
272272
When I run `wp config get DB_PASSWORD`
273273
Then STDOUT should be:
274274
"""
275-
my\\password
275+
my\password
276276
"""
277277
278278
Scenario: wp-config.php in parent folder should not prevent config create in subfolder

0 commit comments

Comments
 (0)