1
0
mirror of synced 2026-05-22 18:53:15 +00:00

fix: no split packages for compatibility with modules (#1013)

This commit is contained in:
Yury Semikhatsky
2022-07-27 13:32:25 -07:00
committed by GitHub
parent 202371b5d7
commit 0afaf6c561
8 changed files with 15 additions and 17 deletions
@@ -14,7 +14,9 @@
* limitations under the License.
*/
package com.microsoft.playwright.impl;
package com.microsoft.playwright.impl.driver.jar;
import com.microsoft.playwright.impl.driver.Driver;
import java.io.IOException;
import java.net.URI;
@@ -163,7 +165,7 @@ public class DriverJar extends Driver {
}
@Override
Path driverDir() {
protected Path driverDir() {
return driverTempDir;
}
}
@@ -16,8 +16,8 @@
package com.microsoft.playwright;
import com.microsoft.playwright.impl.Driver;
import com.microsoft.playwright.impl.DriverJar;
import com.microsoft.playwright.impl.driver.Driver;
import com.microsoft.playwright.impl.driver.jar.DriverJar;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;