From 43e2518fbfbb44b3a5fd696d3611375daa300b6e Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 21 Apr 2023 11:14:15 +0200 Subject: [PATCH] fix(uno): add missing Start test --- pkg/modules/libreoffice/uno/uno_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/modules/libreoffice/uno/uno_test.go b/pkg/modules/libreoffice/uno/uno_test.go index fdd91a77..b5f3c804 100644 --- a/pkg/modules/libreoffice/uno/uno_test.go +++ b/pkg/modules/libreoffice/uno/uno_test.go @@ -196,7 +196,12 @@ func TestUNO_Validate(t *testing.T) { } func TestUNO_Start(t *testing.T) { + mod := new(UNO) + err := mod.Start() + if err != nil { + t.Errorf("expected no error but got: %v", err) + } } func TestUNO_StartupMessage(t *testing.T) {