Skip to content

Commit

Permalink
Merge pull request #724 from recurly/update-braintree-3ds
Browse files Browse the repository at this point in the history
add gateway suggested field to braintree 3ds flow
  • Loading branch information
gilv93 authored May 2, 2022
2 parents 9e86d8d + 93f1d25 commit cb793ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/recurly/risk/three-d-secure/strategy/braintree.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export default class BraintreeStrategy extends ThreeDSecureStrategy {
amount: amount,
nonce: nonce,
bin: bin,
challengeRequested: true,
onLookupComplete: (data, next) => {
next();
}
Expand Down
1 change: 1 addition & 0 deletions test/unit/risk/three-d-secure/strategy/braintree.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ describe('BraintreeStrategy', function () {
amount: 50,
nonce: "test-braintree-nonce",
bin: "test-braintree-bin",
challengeRequested: true,
onLookupComplete: sinon.match.func
}));

Expand Down

0 comments on commit cb793ad

Please sign in to comment.