From 71ccc7a0cdc31a4c58868a80b8f70189cdf48353 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Mon, 27 Apr 2020 14:27:54 +0000 Subject: [PATCH] Fixed linting error --- src/app/tabs/test-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/test-tab.js b/src/app/tabs/test-tab.js index 122999fd0c..a8daddc495 100644 --- a/src/app/tabs/test-tab.js +++ b/src/app/tabs/test-tab.js @@ -169,7 +169,7 @@ module.exports = class TestTab extends ViewPlugin { updateFinalResult (_errors, result, filename) { ++this.readyTestsNumber this.testsOutput.hidden = false - if(!result && (_errors || _errors.errors || Array.isArray(_errors) && (_errors[0].message || _errors[0].formattedMessage))) { + if (!result && (_errors || _errors.errors || Array.isArray(_errors) && (_errors[0].message || _errors[0].formattedMessage))) { this.testCallback({ type: 'contract', filename }) this.setHeader(false) }