From 114965806a826e6fabc60b92f352b4bb6aeb9c92 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar?= <mondejar1994@gmail.com>
Date: Sat, 28 Nov 2020 20:37:09 +0100
Subject: [PATCH] Fix lint issue

---
 __tests__/actionUtils.test.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

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",