From 5570e44c1b099c8c22d3529fb0bdf2b5908764f7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 12 Jan 2023 15:31:30 +0100 Subject: [PATCH] fix(tasks): task relation test --- pkg/models/task_relation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/task_relation_test.go b/pkg/models/task_relation_test.go index b037d224d..ca7e92abc 100644 --- a/pkg/models/task_relation_test.go +++ b/pkg/models/task_relation_test.go @@ -157,7 +157,7 @@ func TestTaskRelation_CanCreate(t *testing.T) { rel := TaskRelation{ TaskID: 1, - OtherTaskID: 13, + OtherTaskID: 32, RelationKind: RelationKindSubtask, } can, err := rel.CanCreate(s, &user.User{ID: 1})