Skip to content

Commit

Permalink
PaymentExpress: correct endpoints
Browse files Browse the repository at this point in the history
Now that Payment Express has renamed to Windcave, the old endpoints no longer work.

Test Summary
Local: 5543 tests, 77553 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
100% passed
Unit: 37 tests, 263 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
100% passed
Remote: 17 tests, 79 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
100% passed
  • Loading branch information
steveh committed Jul 8, 2023
1 parent efcd43d commit 6bc0552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/active_merchant/billing/gateways/payment_express.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class PaymentExpressGateway < Gateway
self.homepage_url = 'https://www.windcave.com/'
self.display_name = 'Windcave (formerly PaymentExpress)'

self.live_url = 'https://sec.paymentexpress.com/pxpost.aspx'
self.test_url = 'https://uat.paymentexpress.com/pxpost.aspx'
self.live_url = 'https://sec.windcave.com/pxpost.aspx'
self.test_url = 'https://uat.windcave.com/pxpost.aspx'

APPROVED = '1'

Expand Down

0 comments on commit 6bc0552

Please sign in to comment.