We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b33bb commit ce1e800Copy full SHA for ce1e800
src/test/java/com/opentok/OpenTokTest.java
@@ -2856,7 +2856,9 @@ public void testStopCaptions() throws Exception {
2856
@Test
2857
public void testVonageShim() throws Exception {
2858
String appId = UUID.randomUUID().toString();
2859
- String testResourceDir = Paths.get(getClass().getResource("").toURI()).toString().replace("classes/java", "resources");
+ String testResourceDir = Paths.get(getClass().getResource("").toURI()).toString()
2860
+ .replace("classes\\java", "classes/java")
2861
+ .replace("classes/java", "resources");
2862
var privateKeyPath = Paths.get(testResourceDir, "application_key");
2863
OpenTok vonage = new OpenTok(appId, privateKeyPath);
2864
assertNotNull(vonage);
0 commit comments