From 2a85763e4367d07d13c41602e7cf649e24978ab1 Mon Sep 17 00:00:00 2001 From: Admin Date: Thu, 7 Oct 2021 15:06:53 +0530 Subject: [PATCH] linting fix --- apps/remix-ide/src/app/tabs/test-tab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/tabs/test-tab.js b/apps/remix-ide/src/app/tabs/test-tab.js index 9e2459d7ac..239090655a 100644 --- a/apps/remix-ide/src/app/tabs/test-tab.js +++ b/apps/remix-ide/src/app/tabs/test-tab.js @@ -248,9 +248,9 @@ module.exports = class TestTab extends ViewPlugin { testCallback (result, runningTests) { this.testsOutput.hidden = false let debugBtn = yo`` - if((result.type === 'testPass' || result.type === 'testFailure') && result.debugTxHash) { + if ((result.type === 'testPass' || result.type === 'testFailure') && result.debugTxHash) { const { web3, debugTxHash } = result - debugBtn = yo `
this.startDebug(debugTxHash, web3)}> + debugBtn = yo`
this.startDebug(debugTxHash, web3)}>
` debugBtn.style.cursor = 'pointer'