Fix lint errors

This commit is contained in:
Simon Engledew 2021-02-02 09:59:06 +00:00
parent 1f07e287da
commit 169b9f804b
No known key found for this signature in database
GPG key ID: 84302E7B02FE8BCE
2 changed files with 2 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -404,8 +404,7 @@ test("formatWorkflowErrors() when there are multiple errors", (t) => {
}); });
test("formatWorkflowCause() with no errors", (t) => { test("formatWorkflowCause() with no errors", (t) => {
const message = actionsutil.formatWorkflowCause([ const message = actionsutil.formatWorkflowCause([]);
]);
t.deepEqual(message, undefined); t.deepEqual(message, undefined);
}); });