TLS unit test resources moved from src/main/resources to test/main/resources
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / SslContextFactoryTest.java
index 2457fd33dc4fb619102260347d7d877163dcfe43..2c45c0b0c25a718325cc8e8b85a91ba7d5ba158e 100644 (file)
@@ -35,8 +35,8 @@ public class SslContextFactoryTest {
     @Before
     public void setUp() {
         MockitoAnnotations.initMocks(this);
-        tlsConfiguration = new TlsConfigurationImpl(KeystoreType.JKS, "src/main/resources/ctlTrustStore",
-                PathType.PATH, KeystoreType.JKS, "src/main/resources/ctlKeystore", PathType.PATH) ;
+        tlsConfiguration = new TlsConfigurationImpl(KeystoreType.JKS, "/ctlTrustStore",
+                PathType.CLASSPATH, KeystoreType.JKS, "/ctlKeystore", PathType.CLASSPATH) ;
         sslContextFactory = new SslContextFactory(tlsConfiguration);
     }