Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shaikhul committed May 9, 2023
1 parent edb138f commit e7e41c3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/workflow.test.ts
Expand Up @@ -249,9 +249,7 @@ test("formatWorkflowCause() with no errors", (t) => {
});

test("formatWorkflowCause()", (t) => {
const message = formatWorkflowCause([
WorkflowErrors.CheckoutWrongHead,
]);
const message = formatWorkflowCause([WorkflowErrors.CheckoutWrongHead]);

t.deepEqual(message, "CheckoutWrongHead");
t.deepEqual(formatWorkflowCause([]), undefined);
Expand Down

0 comments on commit e7e41c3

Please sign in to comment.