From 457acaaccf9f2d57ed439c970acea4ac12ad0454 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 c4e97f0499bfbae813fe5c44ce3d4cf5137f1be3 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') })