Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gavingaozhangmin committed Aug 30, 2022
1 parent e9f9d38 commit 594d2d9
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,20 @@
*/
public abstract class MockedPulsarServiceBaseTest extends TestRetrySupport {
public final static String BROKER_KEYSTORE_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/broker.keystore.jks").getPath();
public final static String BROKER_TRUSTSTORE_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/broker.truststore.jks").getPath();
public final static String BROKER_TRUSTSTORE_NO_PASSWORD_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/broker.truststore.nopassword.jks").getPath();
public final static String BROKER_KEYSTORE_PW = "111111";
public final static String BROKER_TRUSTSTORE_PW = "111111";

public final static String CLIENT_KEYSTORE_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/client.keystore.jks").getPath();
public final static String CLIENT_TRUSTSTORE_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/client.truststore.jks").getPath();
public final static String CLIENT_TRUSTSTORE_NO_PASSWORD_FILE_PATH =
"";
Resources.getResource("certificate-authority/jks/client.truststore.nopassword.jks").getPath();
public final static String CLIENT_KEYSTORE_PW = "111111";
public final static String CLIENT_TRUSTSTORE_PW = "111111";

Expand Down

0 comments on commit 594d2d9

Please sign in to comment.