Skip to content

Commit

Permalink
EL- use system property when setup not invoked (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
alwin-joseph authored Oct 31, 2024
1 parent 2c3c0f4 commit ac9d756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class ELClientTest extends ServiceEETest {

private static final Logger logger = System.getLogger(ELClientTest.class.getName());

private Properties testProps;
private Properties testProps = System.getProperties();

public static void main(String[] args) {
ELClientTest theTests = new ELClientTest();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void logFinishTest(TestInfo testInfo) {
logger.log(Logger.Level.INFO, "FINISHED TEST : " + testInfo.getDisplayName());
}

Properties testProps;
Properties testProps = System.getProperties();

public static void main(String[] args) {
ELClientTest theTests = new ELClientTest();
Expand Down

0 comments on commit ac9d756

Please sign in to comment.