Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Álvaro Mondéjar committed Nov 28, 2020
1 parent 2bdaf00 commit 1149658
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion __tests__/actionUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1149658

Please sign in to comment.