Skip to content

Commit e7e41c3

Browse files
committed
fix linter issue
1 parent edb138f commit e7e41c3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/workflow.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,7 @@ test("formatWorkflowCause() with no errors", (t) => {
249249
});
250250

251251
test("formatWorkflowCause()", (t) => {
252-
const message = formatWorkflowCause([
253-
WorkflowErrors.CheckoutWrongHead,
254-
]);
252+
const message = formatWorkflowCause([WorkflowErrors.CheckoutWrongHead]);
255253

256254
t.deepEqual(message, "CheckoutWrongHead");
257255
t.deepEqual(formatWorkflowCause([]), undefined);

0 commit comments

Comments
 (0)