From a805b6fd0d7a2461b1c0b5461f0a76e815d8340f Mon Sep 17 00:00:00 2001 From: sendaoYan Date: Fri, 6 Sep 2024 09:08:08 +0800 Subject: [PATCH] fix typo support to supported --- .../nio/file/attribute/BasicFileAttributeView/CreationTime.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);