diff --git a/docs/postman-collections/signup_001.postman_collection.json b/docs/postman-collections/signup_001.postman_collection.json index 3e22ec9f..b0464dbb 100644 --- a/docs/postman-collections/signup_001.postman_collection.json +++ b/docs/postman-collections/signup_001.postman_collection.json @@ -384,14 +384,12 @@ } ], "url": { - "raw": "https://api-internal.camdgc-dev.mosip.net/v1/signup/settings", - "protocol": "https", + "raw": "http://localhost:8088/v1/signup/settings", + "protocol": "http", "host": [ - "api-internal", - "camdgc-dev", - "mosip", - "net" + "localhost" ], + "port": "8088", "path": [ "v1", "signup", diff --git a/signup-service/src/test/java/io/mosip/signup/controllers/SignUpControllerTest.java b/signup-service/src/test/java/io/mosip/signup/controllers/SignUpControllerTest.java index 89a6fe43..d0bc5319 100644 --- a/signup-service/src/test/java/io/mosip/signup/controllers/SignUpControllerTest.java +++ b/signup-service/src/test/java/io/mosip/signup/controllers/SignUpControllerTest.java @@ -70,7 +70,7 @@ public void getSignupSettings_thenPass () throws Exception { .andExpect(jsonPath("$['response']['configs']['fullname.pattern']").value("^[\\u1780-\\u17FF\\u19E0-\\u19FF\\u1A00-\\u1A9F\\u0020]{1,30}$")) .andExpect(jsonPath("$['response']['configs']['status.request.delay']").value(20)) .andExpect(jsonPath("$['response']['configs']['status.request.limit']").value(10)) - .andExpect(jsonPath("$['response']['configs']['signin.redirect-url']").value("https://esignet.camdgc-dev.mosip.net/authorize")) + .andExpect(jsonPath("$['response']['configs']['signin.redirect-url']").value("https://esignet.dev.mosip.net/authorize")) .andExpect(jsonPath("$.errors").isEmpty()); }