Skip to content

Commit

Permalink
Fix compile error in PayPalDataCollectorTest (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdchow authored Apr 5, 2024
1 parent f55ad9c commit 16f9e69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void getClientMetadataId_returnsClientMetadataId() throws JSONException {
Configuration configuration = Configuration.fromJson(Fixtures.CONFIGURATION_WITH_LIVE_PAYPAL);
BraintreeClient braintreeClient = new BraintreeClient(ApplicationProvider.getApplicationContext(), Fixtures.TOKENIZATION_KEY);
PayPalDataCollector sut = new PayPalDataCollector(braintreeClient);
String clientMetadataId = sut.getClientMetadataId(ApplicationProvider.getApplicationContext(), configuration);
String clientMetadataId = sut.getClientMetadataId(ApplicationProvider.getApplicationContext(), configuration, true);

assertFalse(TextUtils.isEmpty(clientMetadataId));
}
Expand Down

0 comments on commit 16f9e69

Please sign in to comment.