lib/active_merchant/billing/gateways/instapay.rb in activemerchant-1.85.0 vs lib/active_merchant/billing/gateways/instapay.rb in activemerchant-1.86.0
- old
+ new
@@ -138,11 +138,11 @@
def commit(action, parameters)
data = ssl_post self.live_url, post_data(action, parameters)
response = parse(data)
- Response.new(response[:success] , response[:message], response,
+ Response.new(response[:success], response[:message], response,
:authorization => response[:transaction_id],
:avs_result => { :code => response[:avs_result] },
:cvv_result => response[:cvv_result]
)
end
@@ -158,6 +158,5 @@
request
end
end
end
end
-