Skip to content

Commit

Permalink
MOSIP-34827 - Fixed L2 flow api failure (mosip#966)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
  • Loading branch information
mohanachandran-s authored Oct 18, 2024
1 parent ac88ecf commit fc0008a
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,13 @@ public void test(TestCaseDTO testCaseDTO)
if (EsignetConfigManager.isInServiceNotDeployedList(GlobalConstants.ESIGNET)) {
throw new SkipException("esignet is not deployed hence skipping the testcase");
}
String tempUrl = EsignetConfigManager.getEsignetBaseUrl();

String tempUrl = null;
if (testCaseDTO.getEndPoint().contains("/signup/")) {
tempUrl = EsignetConfigManager.getSignupBaseUrl();
} else {
tempUrl = EsignetConfigManager.getEsignetBaseUrl();
}
if (testCaseDTO.getEndPoint().startsWith("$ESIGNETMOCKBASEURL$")
&& testCaseName.contains("SunBirdC")) {
if (EsignetConfigManager.isInServiceNotDeployedList("sunbirdrc"))
Expand Down

0 comments on commit fc0008a

Please sign in to comment.