From cf67f2f4e822bab5396a5688c261fc4c3cacf5d7 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 15 Mar 2023 13:06:31 +0100 Subject: [PATCH] fix call --- apps/remix-ide/src/app/tabs/test-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/test-tab.js b/apps/remix-ide/src/app/tabs/test-tab.js index df16f47574..af3f5cf43f 100644 --- a/apps/remix-ide/src/app/tabs/test-tab.js +++ b/apps/remix-ide/src/app/tabs/test-tab.js @@ -74,7 +74,7 @@ module.exports = class TestTab extends ViewPlugin { if (!isSolidityActive) { await this.call('manager', 'activatePlugin', 'solidity') } - await this.testRunner.init(await this.call('blockchain', 'web3VM')) + await this.testRunner.init(await this.call('blockchain', 'web3vm')) await this.createTestLibs() }