From d749766344706f517b6f5afb98253846e710132f Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 8 Feb 2021 10:59:21 +0100 Subject: [PATCH 1/2] fix e2e test --- apps/remix-ide-e2e/src/tests/debugger.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/remix-ide-e2e/src/tests/debugger.test.ts b/apps/remix-ide-e2e/src/tests/debugger.test.ts index dd29e870e9..1bfb29fdf9 100644 --- a/apps/remix-ide-e2e/src/tests/debugger.test.ts +++ b/apps/remix-ide-e2e/src/tests/debugger.test.ts @@ -94,8 +94,7 @@ module.exports = { .getEditorValue((content) => { browser.assert.ok(content.indexOf(`constructor (string memory name_, string memory symbol_) { _name = name_; - _symbol = symbol_; - _decimals = 18; + _symbol = symbol_; }`) != -1, 'current displayed content is not from the ERC20 source code') }) From 5c58af15e722b680f3d1923ef1b8824a34bcb27a Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 8 Feb 2021 12:17:45 +0100 Subject: [PATCH 2/2] fix e2e tests --- apps/remix-ide-e2e/src/tests/debugger.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide-e2e/src/tests/debugger.test.ts b/apps/remix-ide-e2e/src/tests/debugger.test.ts index 1bfb29fdf9..fa444e578a 100644 --- a/apps/remix-ide-e2e/src/tests/debugger.test.ts +++ b/apps/remix-ide-e2e/src/tests/debugger.test.ts @@ -94,7 +94,7 @@ module.exports = { .getEditorValue((content) => { browser.assert.ok(content.indexOf(`constructor (string memory name_, string memory symbol_) { _name = name_; - _symbol = symbol_; + _symbol = symbol_; }`) != -1, 'current displayed content is not from the ERC20 source code') })