Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqi1129 committed Dec 27, 2024
1 parent 8fc56ae commit 00fa098
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void testDelete() throws IOException {
String fileName = "test.txt";
Path deletePath = new Path(gvfsPath + "/" + fileName);
try (FileSystem gvfs = gvfsPath.getFileSystem(conf)) {
// Assertions.assertTrue(gvfs.exists(gvfsPath));
Assertions.assertTrue(gvfs.exists(gvfsPath));
gvfs.create(deletePath).close();
Assertions.assertTrue(gvfs.exists(deletePath));
Assertions.assertTrue(gvfs.getFileStatus(deletePath).isFile());
Expand Down

0 comments on commit 00fa098

Please sign in to comment.