lib/active_merchant/billing/integrations/hi_trust.rb in activemerchant-1.34.1 vs lib/active_merchant/billing/integrations/hi_trust.rb in activemerchant-1.35.0
- old
+ new
@@ -5,11 +5,11 @@
module HiTrust
autoload :Helper, File.dirname(__FILE__) + '/hi_trust/helper.rb'
autoload :Return, File.dirname(__FILE__) + '/hi_trust/return.rb'
autoload :Notification, File.dirname(__FILE__) + '/hi_trust/notification.rb'
- TEST_URL = 'https://testtrustlink.hitrust.com.tw/TrustLink/TrxReq'
- LIVE_URL = 'https://trustlink.hitrust.com.tw/TrustLink/TrxReq'
+ TEST_URL = 'https://testtrustlink.hitrust.com.tw/TrustLink/TrxReqForJava'
+ LIVE_URL = 'https://trustlink.hitrust.com.tw/TrustLink/TrxReqForJava'
def self.service_url
ActiveMerchant::Billing::Base.integration_mode == :test ? TEST_URL : LIVE_URL
end