Skip to content

Commit

Permalink
rubocop offense: remove double space around + operator
Browse files Browse the repository at this point in the history
  • Loading branch information
nirnaeth committed Oct 6, 2023
1 parent b19e5dc commit abb004b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/app/models/spree/payment_method/bogus_credit_card.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def authorize(_money, credit_card, _options = {})
if VALID_CCS.include?(credit_card.number) || (profile_id && profile_id.starts_with?('BGS-'))
ActiveMerchant::Billing::Response.new(true, SUCCESS_MESSAGE + message_detail, {}, test: true, authorization: AUTHORIZATION_CODE, avs_result: { code: 'D' })
else
ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE + message_detail, { message: FAILURE_MESSAGE + message_detail }, test: true)
ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE + message_detail, { message: FAILURE_MESSAGE + message_detail }, test: true)
end
end

Expand Down

0 comments on commit abb004b

Please sign in to comment.