Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
rhbz980670 add DocumentType HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Dec 2, 2013
1 parent 736017d commit b91b411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -15,6 +15,7 @@ public enum DocumentType {
OPEN_DOCUMENT_GRAPHICS("odg"), OPEN_DOCUMENT_GRAPHICS_FLAT("fodg"),
OPEN_DOCUMENT_DATABASE("odb"), OPEN_DOCUMENT_FORMULA("odf"),

HTML("html"),
IDML("idml");

private static final List<String> allExtensions = buildExtensionsList();
Expand Down
Expand Up @@ -39,7 +39,7 @@ public void getAllExtensionsNotEmpty() {
assertThat(allExtensions, not(empty()));
assertThat(
allExtensions,
containsInAnyOrder("po", "pot", "txt", "dtd", "idml",
containsInAnyOrder("po", "pot", "txt", "dtd", "idml", "html",
// "properties",
"odt", "fodt", "odp", "fodp", "ods", "fods", "odg",
"fodg", "odb", "odf"));
Expand Down

0 comments on commit b91b411

Please sign in to comment.