diff --git a/spec/features/organizations_spec.rb b/spec/features/organizations_spec.rb index b6d20ed34..15cd4b41b 100644 --- a/spec/features/organizations_spec.rb +++ b/spec/features/organizations_spec.rb @@ -13,6 +13,7 @@ feature 'Organizations' do fill_in 'user_password', with: 'greenpeace' fill_in 'user_password_confirmation', with: 'greenpeace' fill_in 'user_captcha', with: correct_captcha_text + check 'user_terms_of_service' click_button 'Sign up' diff --git a/spec/support/common_actions.rb b/spec/support/common_actions.rb index e16bbac98..4753abbbb 100644 --- a/spec/support/common_actions.rb +++ b/spec/support/common_actions.rb @@ -9,6 +9,7 @@ module CommonActions fill_in 'user_password', with: password fill_in 'user_password_confirmation', with: password fill_in 'user_captcha', with: correct_captcha_text + check 'user_terms_of_service' click_button 'Sign up' end