From b1fd52a41a98b6df82c92c0e1cbcc18893bf65cb Mon Sep 17 00:00:00 2001 From: Murtaza H <1850989+mhussa19@users.noreply.github.com> Date: Fri, 12 Oct 2018 09:55:48 -0700 Subject: [PATCH] test: removed unused error variable in try catch In test/parallel/test-fs-access.js --- test/parallel/test-fs-access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-fs-access.js b/test/parallel/test-fs-access.js index 02e9356275dbc7..d0f730f25e12dd 100644 --- a/test/parallel/test-fs-access.js +++ b/test/parallel/test-fs-access.js @@ -55,7 +55,7 @@ if (!common.isWindows && process.getuid() === 0) { try { process.setuid('nobody'); hasWriteAccessForReadonlyFile = false; - } catch (err) { + } catch { } }