Commit 372e29e1 authored by ioedeveloper's avatar ioedeveloper

Fixed debugger test

parent ceeeb76e
...@@ -89,11 +89,10 @@ module.exports = { ...@@ -89,11 +89,10 @@ module.exports = {
.debugTransaction(2) .debugTransaction(2)
.pause(2000) .pause(2000)
.goToVMTraceStep(10) .goToVMTraceStep(10)
.pause(10000)
.getEditorValue((content) => { .getEditorValue((content) => {
browser.assert.ok(content.indexOf(`constructor (string memory name, string memory symbol) public { browser.assert.ok(content.indexOf(`constructor (string memory name_, string memory symbol_) public {
_name = name; _name = name_;
_symbol = symbol; _symbol = symbol_;
_decimals = 18; _decimals = 18;
}`) != -1, }`) != -1,
'current displayed content is not from the ERC20 source code') 'current displayed content is not from the ERC20 source code')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment