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 authored and aenand committed Jul 25, 2023
1 parent d9c926a commit 413f4af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
= ActiveMerchant CHANGELOG

== HEAD
* PaymentExpress: Correct endpoints [steveh] #4827

== Version 1.134.0 (July 25, 2023)
* Update required Ruby version [almalee24] #4823
Expand Down
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 413f4af

Please sign in to comment.