Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Version 4.77: fix version in utils/UtilsTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
vpietri-tbd authored and thomasmonext committed Feb 27, 2024
1 parent e4ba814 commit 4d566ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/payline/kit/utils/UtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void shouldInitWebWebWithBundle() {
assertEquals("111222333", requestContext.get(BindingProvider.USERNAME_PROPERTY));
assertEquals("xxx000xxx", requestContext.get(BindingProvider.PASSWORD_PROPERTY)); // Données dans payline.properties
assertEquals("https://homologation.payline.com/V4/services/WebPaymentAPI", requestContext.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY));
assertEquals("kit JAVA v4.76", ((Map<String, List<String>>) requestContext.get(MessageContext.HTTP_REQUEST_HEADERS)).get("version").get(0));
assertEquals(System.getProperty("java.version") + " - " + "JAVA SDK v4.77", ((Map<String, List<String>>) requestContext.get(MessageContext.HTTP_REQUEST_HEADERS)).get("version").get(0));
assertEquals("false", System.getProperty("http.proxySet"));
assertNull(System.getProperty("http.proxyHost"));
assertNull(System.getProperty("http.proxyPort"));
Expand Down

0 comments on commit 4d566ae

Please sign in to comment.