Skip to content

Commit

Permalink
fixed cert test proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
harshitvora committed Mar 30, 2018
1 parent 94b415e commit 12133a1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/certificationTest/java/com/litle/sdk/TestCert1Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public static void beforeClass() throws Exception {
FileInputStream fileInputStream = new FileInputStream((new Configuration()).location());
config.load(fileInputStream);
config.setProperty("url", "https://prelive.litle.com/vap/communicator/online");
config.setProperty("proxyHost", "");
config.setProperty("proxyPort", "");
litle = new LitleOnline(config);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public static void beforeClass() throws Exception {
FileInputStream fileInputStream = new FileInputStream((new Configuration()).location());
config.load(fileInputStream);
config.setProperty("url", "https://prelive.litle.com/vap/communicator/online");
config.setProperty("proxyHost", "");
config.setProperty("proxyPort", "");
litle = new LitleOnline(config);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public static void beforeClass() throws Exception {
FileInputStream fileInputStream = new FileInputStream((new Configuration()).location());
config.load(fileInputStream);
config.setProperty("url", "https://prelive.litle.com/vap/communicator/online");
config.setProperty("proxyHost", "");
config.setProperty("proxyPort", "");
litle = new LitleOnline(config);
}

Expand Down
2 changes: 2 additions & 0 deletions src/certificationTest/java/com/litle/sdk/TestCert4Echeck.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public static void beforeClass() throws Exception {
FileInputStream fileInputStream = new FileInputStream((new Configuration()).location());
config.load(fileInputStream);
config.setProperty("url", "https://prelive.litle.com/vap/communicator/online");
config.setProperty("proxyHost", "");
config.setProperty("proxyPort", "");
litle = new LitleOnline(config);
}

Expand Down
2 changes: 2 additions & 0 deletions src/certificationTest/java/com/litle/sdk/TestCert5Token.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public static void beforeClass() throws Exception {
FileInputStream fileInputStream = new FileInputStream((new Configuration()).location());
config.load(fileInputStream);
config.setProperty("url", "https://prelive.litle.com/vap/communicator/online");
config.setProperty("proxyHost", "");
config.setProperty("proxyPort", "");
litle = new LitleOnline(config);
}

Expand Down

0 comments on commit 12133a1

Please sign in to comment.