lib/active_merchant/billing/gateways/braintree_orange.rb in activemerchant-1.26.0 vs lib/active_merchant/billing/gateways/braintree_orange.rb in activemerchant-1.27.0

- old
+ new

@@ -5,13 +5,11 @@ module Billing #:nodoc: class BraintreeOrangeGateway < SmartPs include BraintreeCommon self.display_name = 'Braintree (Orange Platform)' - - def api_url - 'https://secure.braintreepaymentgateway.com/api/transact.php' - end + + self.live_url = self.test_url = 'https://secure.braintreepaymentgateway.com/api/transact.php' def add_processor(post, options) post[:processor_id] = options[:processor] unless options[:processor].nil? end end