diff --git a/test/jdk/java/nio/file/attribute/BasicFileAttributeView/CreationTime.java b/test/jdk/java/nio/file/attribute/BasicFileAttributeView/CreationTime.java index 45e6564d95268..0b227db6ae8be 100644 --- a/test/jdk/java/nio/file/attribute/BasicFileAttributeView/CreationTime.java +++ b/test/jdk/java/nio/file/attribute/BasicFileAttributeView/CreationTime.java @@ -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);