lib/active_merchant/billing/gateways/verifi.rb in activemerchant-1.86.0 vs lib/active_merchant/billing/gateways/verifi.rb in activemerchant-1.87.0
- old
+ new
@@ -190,10 +190,10 @@
end
def commit(trx_type, money, post)
post[:amount] = amount(money)
- response = parse( ssl_post(self.live_url, post_data(trx_type, post)) )
+ response = parse(ssl_post(self.live_url, post_data(trx_type, post)))
Response.new(response[:response].to_i == SUCCESS, message_from(response), response,
:test => test?,
:authorization => response[:transactionid],
:avs_result => { :code => response[:avsresponse] },