Skip to content

Commit

Permalink
Change language parameter in createToken method to "en" instead of "es"
Browse files Browse the repository at this point in the history
- Update TokensApiTest.java
- Change language parameter in createToken method from "es" to "en"
  • Loading branch information
fcarrero committed Nov 8, 2024
1 parent 0834df6 commit ad11b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/io/conekta/TokensApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void CreateTokenFails() throws ApiException {
card.setNumber("4242424242424242");
token.setCard(card);

TokenResponse response = instance.createToken(token, "es");
TokenResponse response = instance.createToken(token, "en");

assertEquals("tok_2toPJUcZ27AH5LsZk", response.getId());
}
Expand Down

0 comments on commit ad11b00

Please sign in to comment.