Skip to content

Commit

Permalink
- Fix issue #437
Browse files Browse the repository at this point in the history
  • Loading branch information
rathnapandi committed Sep 7, 2023
1 parent 449112c commit 91387f6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ public static synchronized CoreParameters getInstance() {
return instance;
}

public static synchronized void deleteInstance(){
instance = null;
}

public String getStage() {
return stage;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.axway.apim.WiremockWrapper;
import com.axway.apim.adapter.APIManagerAdapter;
import com.axway.apim.lib.CoreParameters;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
Expand Down Expand Up @@ -38,9 +37,7 @@ public void importApplicationReturnCodeMapping() {
int returnCode = ClientApplicationImportApp.importApp(args);
Assert.assertEquals(returnCode, 0);
} finally {
CoreParameters.deleteInstance();
APIManagerAdapter.deleteInstance();

}
}

Expand Down

0 comments on commit 91387f6

Please sign in to comment.