Skip to content

Commit 2eca68e

Browse files
committed
Update returnUrl in unit test
1 parent 3de65f2 commit 2eca68e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/com/adyen/CheckoutTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void TestDeserializePaymentRequestIdeal() throws Exception {
102102
// reference
103103
assertEquals("merchantReference", parsedCheckoutPaymentRequest.getReference());
104104
// return url
105-
assertEquals("http://return.com", parsedCheckoutPaymentRequest.getReturnUrl());
105+
assertEquals("https://your-company.com/..", parsedCheckoutPaymentRequest.getReturnUrl());
106106
}
107107

108108
/**

src/test/resources/mocks/checkout/paymentRequestIdeal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"type":"ideal"
1010
},
1111
"reference":"merchantReference",
12-
"returnUrl":"http://return.com"
12+
"returnUrl":"https://your-company.com/.."
1313
}

0 commit comments

Comments
 (0)