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
This commit is contained in:
Brian Burkhalter 2016-08-19 13:38:12 -07:00
parent 069573f635
commit 13f73f71eb

View File

@ -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"},