linting fix

pull/1342/head^2
Aniket-Engg 3 years ago committed by Aniket
parent 9b60d0bbe6
commit 5b9029f20b
  1. 2
      apps/remix-ide/src/app/tabs/test-tab.js
  2. 2
      libs/remix-tests/src/deployer.ts

@ -499,7 +499,7 @@ module.exports = class TestTab extends ViewPlugin {
usingWorker: canUseWorker(currentVersion),
runs
}
this.testRunner.runTestSources(runningTest, compilerConfig, () => {}, () => {}, (error, result) => {
this.testRunner.runTestSources(runningTest, compilerConfig, () => {}, () => {}, null, (error, result) => {
if (error) return reject(error)
resolve(result)
}, (url, cb) => {

@ -79,7 +79,7 @@ export function deployAll (compileResult: compilationInterface, web3: Web3, with
contracts[contractName] = contractObject
contracts[contractName].filename = filename
if(deployCb) await deployCb(filename, receipt.contractAddress)
if (deployCb) await deployCb(filename, receipt.contractAddress)
callback(null, { receipt: { contractAddress: receipt.contractAddress } }) // TODO this will only work with JavaScriptV VM
}).on('error', function (err) {
console.error(err)

Loading…
Cancel
Save