Skip to content

Commit 071c175

Browse files
committed
Added space at the end of VALUES.
1 parent 22a54bf commit 071c175

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

features/search-replace-export.feature

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,21 @@ Feature: Search / replace with file export
2323
When I run `wp search-replace example.com example.net --skip-tables=wp_options --export`
2424
Then STDOUT should not contain:
2525
"""
26-
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
27-
('1', 'siteurl', 'http://example.com', 'yes'),
26+
INSERT INTO `wp_options`
2827
"""
2928

3029
When I run `wp search-replace example.com example.net --skip-columns=option_value --export`
3130
Then STDOUT should contain:
3231
"""
33-
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
32+
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
3433
('1', 'siteurl', 'http://example.com', 'yes'),
3534
"""
3635

3736
When I run `wp search-replace example.com example.net --skip-columns=option_value --export --export_insert_size=1`
3837
Then STDOUT should contain:
3938
"""
4039
('1', 'siteurl', 'http://example.com', 'yes');
41-
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
40+
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
4241
"""
4342

4443
When I run `wp search-replace foo bar --export | tail -n 1`

0 commit comments

Comments
 (0)