From cbae9b7a87975bb2b07b345bfc68a8d401836c95 Mon Sep 17 00:00:00 2001 From: Erwan Martin Date: Sun, 29 Oct 2023 22:01:35 +0100 Subject: [PATCH] Lint --- pkg/caldav/caldav.go | 2 +- pkg/routes/caldav/listStorageProvider_test.go | 3 ++- pkg/routes/caldav/main_test.go | 19 ++++++++++++++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/pkg/caldav/caldav.go b/pkg/caldav/caldav.go index cf3e865516c..19be3ed62eb 100644 --- a/pkg/caldav/caldav.go +++ b/pkg/caldav/caldav.go @@ -52,7 +52,7 @@ type Todo struct { Duration time.Duration RepeatAfter int64 RepeatMode models.TaskRepeatMode - Alarms []Alarm + Alarms []Alarm Created time.Time Updated time.Time // last-mod diff --git a/pkg/routes/caldav/listStorageProvider_test.go b/pkg/routes/caldav/listStorageProvider_test.go index a828a99af6a..9833eba691b 100644 --- a/pkg/routes/caldav/listStorageProvider_test.go +++ b/pkg/routes/caldav/listStorageProvider_test.go @@ -19,11 +19,12 @@ package caldav // This file tests logic related to handling tasks in CALDAV format import ( + "testing" + "code.vikunja.io/api/pkg/db" "code.vikunja.io/api/pkg/models" "code.vikunja.io/api/pkg/user" "github.com/stretchr/testify/assert" - "testing" ) // Check logic related to creating sub-tasks diff --git a/pkg/routes/caldav/main_test.go b/pkg/routes/caldav/main_test.go index 7093df18e21..5817d8198a6 100644 --- a/pkg/routes/caldav/main_test.go +++ b/pkg/routes/caldav/main_test.go @@ -1,11 +1,28 @@ +// Vikunja is a to-do list application to facilitate your life. +// Copyright 2018-present Vikunja and contributors. All rights reserved. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public Licensee as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public Licensee for more details. +// +// You should have received a copy of the GNU Affero General Public Licensee +// along with this program. If not, see . + package caldav import ( + "testing" + "code.vikunja.io/api/pkg/config" "code.vikunja.io/api/pkg/files" "code.vikunja.io/api/pkg/models" "code.vikunja.io/api/pkg/user" - "testing" ) // TestMain is the main test function used to bootstrap the test env