1
0

Refactor ListTask to Task (#92)

This commit is contained in:
konrad
2019-08-14 20:19:04 +00:00
committed by Gitea
parent be14634e1e
commit 66cdd79666
26 changed files with 206 additions and 189 deletions

View File

@ -76,7 +76,7 @@ func TestLabelTask_ReadAll(t *testing.T) {
a: &User{ID: 1},
},
wantErr: true,
errType: IsErrListTaskDoesNotExist,
errType: IsErrTaskDoesNotExist,
},
}
for _, tt := range tests {
@ -168,7 +168,7 @@ func TestLabelTask_Create(t *testing.T) {
},
wantForbidden: true,
wantErr: true,
errType: IsErrListTaskDoesNotExist,
errType: IsErrTaskDoesNotExist,
},
}
for _, tt := range tests {