Skip to content

Commit fcb2d05

Browse files
committed
Lint fix
1 parent 36fb7e1 commit fcb2d05

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

features/db-users.feature

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ Feature: Manage database users
77
And wp-config.php
88

99
When I try `wp db create`
10-
11-
When I run `wp db users create testuser localhost --password=testpass123`
10+
And I run `wp db users create testuser localhost --password=testpass123`
1211
Then STDOUT should contain:
1312
"""
1413
Success: Database user 'testuser'@'localhost' created.
@@ -26,8 +25,7 @@ Feature: Manage database users
2625
And wp-config.php
2726

2827
When I try `wp db create`
29-
30-
When I run `wp db users create appuser localhost --password=secret123 --grant-privileges`
28+
And I run `wp db users create appuser localhost --password=secret123 --grant-privileges`
3129
Then STDOUT should contain:
3230
"""
3331
created with privileges on database
@@ -43,8 +41,7 @@ Feature: Manage database users
4341
And wp-config.php
4442

4543
When I try `wp db create`
46-
47-
When I run `wp db users create remoteuser '%' --password=remote123`
44+
And I run `wp db users create remoteuser '%' --password=remote123`
4845
Then STDOUT should contain:
4946
"""
5047
Success: Database user 'remoteuser'@'%' created.
@@ -56,8 +53,7 @@ Feature: Manage database users
5653
And wp-config.php
5754

5855
When I try `wp db create`
59-
60-
When I run `wp db users create nopassuser localhost`
56+
And I run `wp db users create nopassuser localhost`
6157
Then STDOUT should contain:
6258
"""
6359
Success: Database user 'nopassuser'@'localhost' created.

0 commit comments

Comments
 (0)