Skip to content

Commit

Permalink
chore: update braintree to 3.107.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cbarton committed Sep 18, 2024
1 parent 538a80a commit 44c1dd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/util/braintree-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Debug from 'debug';

const debug = Debug('recurly:braintree');

const BRAINTREE_CLIENT_VERSION = '3.101.0';
const BRAINTREE_CLIENT_VERSION = '3.107.1';

const MOD_TO_LIB = {
'dataCollector': 'data-collector',
Expand Down
2 changes: 1 addition & 1 deletion test/unit/apple-pay.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ApplePaySessionStub.canMakePayments = () => true;

const getBraintreeStub = () => ({
client: {
VERSION: '3.101.0',
VERSION: BraintreeLoader.BRAINTREE_CLIENT_VERSION,
create: sinon.stub().resolves('CLIENT'),
},
dataCollector: {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/google-pay/google-pay.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const INTEGRATION = {

const getBraintreeStub = () => ({
client: {
VERSION: '3.101.0',
VERSION: BraintreeLoader.BRAINTREE_CLIENT_VERSION,
create: sinon.stub().resolves('CLIENT'),
},
dataCollector: {
Expand Down

0 comments on commit 44c1dd8

Please sign in to comment.