Skip to content

Commit

Permalink
MOSIP-29286
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohandey committed Oct 4, 2023
1 parent d27bfba commit 31041eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static String submittingPartnerAndGetMappingKey() {

HashMap<String, String> requestBody = new HashMap<>();

requestBody.put("policyName", policyName2);
requestBody.put("policyName", policyName);
requestBody.put("useCaseDescription", "mapping Partner to policyName");

HashMap<String, Object> body = new HashMap<>();
Expand Down Expand Up @@ -89,7 +89,7 @@ public static String submittingPartnerAndGetMappingKeyForKyc() {

HashMap<String, String> requestBody = new HashMap<>();

requestBody.put("policyName", policyName);
requestBody.put("policyName", policyName2);
requestBody.put("useCaseDescription", "mapping Partner to policyName");

HashMap<String, Object> body = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ public static void main(String[] arg) {

} else if (BaseTestCase.listOfModules.contains("auth")
|| BaseTestCase.listOfModules.contains(GlobalConstants.ESIGNET)) {
if (partnerKeyURL.isEmpty() || ekycPartnerKeyURL.isEmpty())
if (partnerKeyURL.isEmpty())
// if (partnerKeyURL.isEmpty() || ekycPartnerKeyURL.isEmpty())
LOGGER.error("partnerKeyURL is null");
else
startTestRunner();
Expand Down

0 comments on commit 31041eb

Please sign in to comment.