diff --git a/features/search-replace-export.feature b/features/search-replace-export.feature index 000e9aa6..d645b9ff 100644 --- a/features/search-replace-export.feature +++ b/features/search-replace-export.feature @@ -51,13 +51,19 @@ Feature: Search / replace with file export Then STDOUT should contain: """ INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE} - ('1', 'siteurl', 'https://example.com', 'yes'), + """ + And STDOUT should contain: + """ + ('1', 'siteurl', 'https://example.com' """ When I run `wp search-replace example.com example.net --skip-columns=option_value --export --export_insert_size=1` Then STDOUT should contain: """ - ('1', 'siteurl', 'https://example.com', 'yes'); + ('1', 'siteurl', 'https://example.com' + """ + And STDOUT should contain: + """ INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE} """