Skip to content

Commit

Permalink
fix typo support to supported
Browse files Browse the repository at this point in the history
  • Loading branch information
sendaoYan committed Sep 6, 2024
1 parent c364944 commit a805b6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static void test(Path top) throws IOException {
System.out.println("creationTime.toMillis() == " + creationTime.toMillis());
// If the file system doesn't support birth time, then skip this test
if (creationTime.toMillis() == 0) {
throw new SkippedException("birth time not support for: " + file);
throw new SkippedException("birth time not supported for: " + file);
} else {
err.println("File creation time reported as: " + creationTime);
throw new RuntimeException("Expected to be close to: " + now);
Expand Down

0 comments on commit a805b6f

Please sign in to comment.