Add changelog entry, add additional test case

This commit is contained in:
Luqqk
2021-08-03 00:11:49 +02:00
committed by Ken Hibino
parent 6817af366a
commit 95c90a5cb8
3 changed files with 10 additions and 4 deletions

View File

@@ -590,6 +590,11 @@ func TestClientEnqueueError(t *testing.T) {
task: NewTask("", h.JSON(map[string]interface{}{})),
opts: []Option{},
},
{
desc: "With blank task typename",
task: NewTask(" ", h.JSON(map[string]interface{}{})),
opts: []Option{},
},
}
for _, tc := range tests {