diff --git a/__tests__/actionUtils.test.ts b/__tests__/actionUtils.test.ts index 568b947..f6c6f07 100644 --- a/__tests__/actionUtils.test.ts +++ b/__tests__/actionUtils.test.ts @@ -214,7 +214,10 @@ test("getInputAsArray handles empty lines correctly", () => { }); test("getInputAsArray sorts files correctly", () => { - testUtils.setInput("foo", "bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply"); + testUtils.setInput( + "foo", + "bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply" + ); expect(actionUtils.getInputAsArray("foo")).toEqual([ "!baz", "bar",