feat(libreoffice): add macOS *.key support

This commit is contained in:
eMerzh
2024-02-26 10:33:13 +01:00
committed by Julien Neuhart
parent c70329c22b
commit c95174ff11
2 changed files with 2 additions and 1 deletions

View File

@@ -316,6 +316,7 @@ func (a *Api) Extensions() []string {
".odp", ".odp",
".fodp", ".fodp",
".pages", ".pages",
".key",
".potm", ".potm",
".pot", ".pot",
".pptx", ".pptx",

View File

@@ -450,7 +450,7 @@ func TestApi_Extensions(t *testing.T) {
extensions := a.Extensions() extensions := a.Extensions()
actual := len(extensions) actual := len(extensions)
expect := 80 expect := 81
if actual != expect { if actual != expect {
t.Errorf("expected %d extensions, but got %d", expect, actual) t.Errorf("expected %d extensions, but got %d", expect, actual)