Skip to content

Commit 8eeea43

Browse files
committed
Fix regex
1 parent 75f52d2 commit 8eeea43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/db-export.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Feature: Export a WordPress database
2525

2626
When I try `wp db export wp_cli_test.sql --exclude_tables=wp_users --porcelain`
2727
Then the wp_cli_test.sql file should exist
28-
And the contents of the wp_cli_test.sql file should not match /CREATE TABLE "?wp_users"?/
29-
And the contents of the wp_cli_test.sql file should match /CREATE TABLE "?wp_options"?/
28+
And the contents of the wp_cli_test.sql file should not match /CREATE TABLE ["`]?wp_users["`]?/
29+
And the contents of the wp_cli_test.sql file should match /CREATE TABLE ["`]?wp_options["`]?/
3030

3131
Scenario: Export database to STDOUT
3232
Given a WP install

0 commit comments

Comments
 (0)