Skip to content

Commit 33a8715

Browse files
authored
Update playwright/src/test/java/com/microsoft/playwright/TestPageSetInputFiles.java
1 parent 3921dac commit 33a8715

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/src/test/java/com/microsoft/playwright/TestPageSetInputFiles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ void shouldUploadAFolder(@TempDir Path tmpDir) throws IOException {
474474
void shouldUploadAFolderAndThrowForMultipleDirectories(@TempDir Path tmpDir) throws IOException {
475475
page.navigate(server.PREFIX + "/input/folderupload.html");
476476
Locator input = page.locator("input[name=\"file1\"]");
477-
Path dir = tmpDir.resolve("file-upload-test"); // Adjust path as necessary
477+
Path dir = tmpDir.resolve("file-upload-test");
478478
Files.createDirectories(dir.resolve("folder1"));
479479
writeFile(dir.resolve("folder1").resolve("file1.txt"), "file1 content");
480480
Files.createDirectories(dir.resolve("folder2"));

0 commit comments

Comments
 (0)