Commit 19f026db authored by yann300's avatar yann300

fix e2e

parent 6171000e
...@@ -121,7 +121,8 @@ const stateCheck = { ...@@ -121,7 +121,8 @@ const stateCheck = {
chairperson: { chairperson: {
value: '0xCA35B7D915458EF540ADE6068DFE2F44E8FA733C', value: '0xCA35B7D915458EF540ADE6068DFE2F44E8FA733C',
type: 'address', type: 'address',
constant: false constant: false,
immutable: false
}, },
voters: { voters: {
value: { value: {
...@@ -148,7 +149,8 @@ const stateCheck = { ...@@ -148,7 +149,8 @@ const stateCheck = {
} }
}, },
type: 'mapping(address => struct Ballot.Voter)', type: 'mapping(address => struct Ballot.Voter)',
constant: false constant: false,
immutable: false
}, },
proposals: { proposals: {
value: [ value: [
...@@ -168,7 +170,8 @@ const stateCheck = { ...@@ -168,7 +170,8 @@ const stateCheck = {
], ],
length: '0x1', length: '0x1',
type: 'struct Ballot.Proposal[]', type: 'struct Ballot.Proposal[]',
constant: false constant: false,
immutable: false
} }
} }
......
...@@ -228,7 +228,7 @@ module.exports = { ...@@ -228,7 +228,7 @@ module.exports = {
.waitForElementVisible('*[data-id="solidityLocals"]', 60000) .waitForElementVisible('*[data-id="solidityLocals"]', 60000)
.pause(10000) .pause(10000)
.checkVariableDebug('soliditylocals', { num: { value: '2', type: 'uint256' } }) .checkVariableDebug('soliditylocals', { num: { value: '2', type: 'uint256' } })
.checkVariableDebug('soliditystate', { number: { value: '0', type: 'uint256', constant: false } }) .checkVariableDebug('soliditystate', { number: { value: '0', type: 'uint256', constant: false, immutable: false } })
.end() .end()
} }
} }
......
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