Skip to content

Commit d908c57

Browse files
authored
Merge pull request #195 from wp-cli/fix-tests
2 parents f6c828a + e1815cf commit d908c57

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

features/search-replace-export.feature

+9-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Feature: Search / replace with file export
1414
"""
1515
And STDOUT should contain:
1616
"""
17-
('1', 'siteurl', 'https://example.net', 'yes'),
17+
('1', 'siteurl', 'https://example.net',
1818
"""
1919

2020
When I run `wp option get home`
@@ -51,13 +51,19 @@ Feature: Search / replace with file export
5151
Then STDOUT should contain:
5252
"""
5353
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE}
54-
('1', 'siteurl', 'https://example.com', 'yes'),
54+
"""
55+
And STDOUT should contain:
56+
"""
57+
('1', 'siteurl', 'https://example.com'
5558
"""
5659

5760
When I run `wp search-replace example.com example.net --skip-columns=option_value --export --export_insert_size=1`
5861
Then STDOUT should contain:
5962
"""
60-
('1', 'siteurl', 'https://example.com', 'yes');
63+
('1', 'siteurl', 'https://example.com'
64+
"""
65+
And STDOUT should contain:
66+
"""
6167
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE}
6268
"""
6369

0 commit comments

Comments
 (0)