Skip to content

Commit

Permalink
Rotate sample app value for customer-id
Browse files Browse the repository at this point in the history
Force re-tokenization of test cards in mobile-qa-tets
  • Loading branch information
djoksimo committed Jun 17, 2024
1 parent b4ff3f8 commit 8a08eed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class PaymentsRepository(sessionToken: String) {
metadata = metadata,
deliveryAddress = deliveryAddress,
isDelivery = isDelivery,
customerId = "android-test-customer-id"
customerId = "android-test-customer-id-2"
)
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FlowCapturePaymentViewModel @Inject constructor(
)
}
is ForageApiResponse.Failure -> {
Log.d(TAG, "Capture Snap Payment Response: ${response.errors[0].message}")
Log.d(TAG, "Capture Snap Payment Response: ${response.errors[0].message} Payment: $snapPaymentRef")

_uiState.value = _uiState.value!!.copy(
isLoading = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class FlowTokenizeViewModel @Inject constructor(
val response = ForageSDK().tokenizeEBTCard(
TokenizeEBTCardParams(
foragePanEditText = foragePanEditText,
customerId = "android-test-customer-id"
customerId = "android-test-customer-id-2"
)
)

Expand Down

0 comments on commit 8a08eed

Please sign in to comment.