Skip to content

Commit

Permalink
compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyge2022 committed Nov 13, 2023
1 parent 01acd6d commit ef131a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static void beforeClass() {

@Test
public void createDeleteEmptyFile() throws Exception {
String testFile = Paths.get(MOUNT_POINT, "/createDeleteEmptyFile").toString();
String testFile = Paths.get(sMountPoint, "/createDeleteEmptyFile").toString();
File file = new File(testFile);
assertFalse(file.exists());
new FileOutputStream(testFile).close();
Expand All @@ -52,7 +52,7 @@ public void createDeleteEmptyFile() throws Exception {

@Test
public void writeThenRead() throws Exception {
String testFile = Paths.get(MOUNT_POINT, "/writeThenRead").toString();
String testFile = Paths.get(sMountPoint, "/writeThenRead").toString();
byte[] content = "Alluxio Fuse Test File Content".getBytes();
File file = new File(testFile);
assertFalse(file.exists());
Expand Down

0 comments on commit ef131a5

Please sign in to comment.