Merge pull request #1266 from ethereum/fixdebugTest

Fix debugging test (comply with 0.4.23 solidity version)
pull/3094/head
yann300 7 years ago committed by GitHub
commit dda1225b5c
  1. 4
      .circleci/config.yml
  2. 2
      test-browser/tests/ballot.js

@ -26,10 +26,10 @@ jobs:
- checkout
- restore_cache:
keys:
- dep-bundle-6-{{ checksum "package.json" }}
- dep-bundle-7-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-6-{{ checksum "package.json" }}
key: dep-bundle-7-{{ checksum "package.json" }}
paths:
- ~/repo/node_modules
- run: npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build

@ -48,7 +48,7 @@ function runTests (browser, testData) {
.pause(500)
.perform(function (client, done) {
console.log('goToVMtraceStep')
contractHelper.goToVMtraceStep(browser, 39, () => {
contractHelper.goToVMtraceStep(browser, 47, () => {
done()
})
})

Loading…
Cancel
Save