Skip to content

Commit

Permalink
Merge pull request #1446 from nandhu-kumar/develop
Browse files Browse the repository at this point in the history
MOSIP-33136
  • Loading branch information
kamalsinghthoughtworks committed May 21, 2024
2 parents 6098a19 + c5648df commit 9e24fef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2921,7 +2921,7 @@ public String uriKeyWordHandelerUri(String uri, String testCaseName) {
return uri;
}

public String getAuthTransactionId(String oidcTransactionId) {
public static String getAuthTransactionId(String oidcTransactionId) {
final String transactionId = oidcTransactionId.replaceAll("_|-", "");
String lengthOfTransactionId = AdminTestUtil.getValueFromEsignetActuator("/mosip/mosip-config/esignet-default.properties", "mosip.esignet.auth-txn-id-length");
int authTransactionIdLength = lengthOfTransactionId != null ? Integer.parseInt(lengthOfTransactionId): 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ public void setResultTestName(ITestResult result) {
@AfterClass(alwaysRun = true)
public void waittime() {
try {
if (!testCaseName.contains("Resident_CheckAidStatus")) {
if ((!testCaseName.contains(GlobalConstants.ESIGNET_))
&& (!testCaseName.contains("Resident_CheckAidStatus"))) {
long delayTime = Long.parseLong(properties.getProperty("Delaytime"));
if (!BaseTestCase.isTargetEnvLTS())
delayTime = Long.parseLong(properties.getProperty("uinGenDelayTime"))
Expand Down

0 comments on commit 9e24fef

Please sign in to comment.