Skip to content

Commit e1815cf

Browse files
committed
Fix later assertions as well
1 parent d2db8f5 commit e1815cf

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

features/search-replace-export.feature

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)