From 13f73f71eb90f15449b2eb4baec4d13b33c15c70 Mon Sep 17 00:00:00 2001 From: Brian Burkhalter Date: Fri, 19 Aug 2016 13:38:12 -0700 Subject: [PATCH] 8164432: java/nio/file/Files/probeContentType/Basic.java fails on windows for Content type: audio/vnd.dlna.adts Add audio/vnd.dlna.adts as an allowed MIME type for the aac extension. Reviewed-by: darcy --- jdk/test/java/nio/file/Files/probeContentType/Basic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdk/test/java/nio/file/Files/probeContentType/Basic.java b/jdk/test/java/nio/file/Files/probeContentType/Basic.java index 5e0d0c94c62..003f9494f11 100644 --- a/jdk/test/java/nio/file/Files/probeContentType/Basic.java +++ b/jdk/test/java/nio/file/Files/probeContentType/Basic.java @@ -184,7 +184,7 @@ public class Basic { "webm" }; String[][] expectedTypes = new String[][] { - {"audio/aac", "audio/x-aac"}, + {"audio/aac", "audio/x-aac", "audio/vnd.dlna.adts"}, {"audio/flac", "audio/x-flac"}, {"image/jpeg"}, {"audio/mpeg"},