@@ -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