fix(migration): remove wunderlist leftovers

This commit is contained in:
kolaente 2023-01-12 15:04:59 +01:00
parent 55410ea73d
commit 77ad90d53e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 5 additions and 6 deletions

View File

@ -264,11 +264,11 @@ func TestTask_Update(t *testing.T) {
assert.Equal(t, int64(1), task.BucketID) // Bucket should not be updated
db.AssertExists(t, "tasks", map[string]interface{}{
"id": 28,
"done": false,
"title": "test updated",
"list_id": 1,
"bucket_id": 1,
"id": 28,
"done": false,
"title": "test updated",
"project_id": 1,
"bucket_id": 1,
}, false)
})
t.Run("default bucket when moving a task between projects", func(t *testing.T) {

View File

@ -69,7 +69,6 @@ import (
"code.vikunja.io/api/pkg/modules/migration/todoist"
"code.vikunja.io/api/pkg/modules/migration/trello"
vikunja_file "code.vikunja.io/api/pkg/modules/migration/vikunja-file"
"code.vikunja.io/api/pkg/modules/migration/wunderlist"
apiv1 "code.vikunja.io/api/pkg/routes/api/v1"
"code.vikunja.io/api/pkg/routes/caldav"
_ "code.vikunja.io/api/pkg/swagger" // To generate swagger docs