From c4e97f0499bfbae813fe5c44ce3d4cf5137f1be3 Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 8 Feb 2021 12:17:45 +0100 Subject: [PATCH] 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') })