fix trace manager test

pull/5370/head
Iuri Matias 4 years ago committed by yann300
parent ac8bac747f
commit 05ddfbe300
  1. 4
      libs/remix-lib/test/traceManager.js

@ -251,7 +251,7 @@ tape('TraceManager', function (t) {
t.test('TraceManager.getStepCost', function (st) { t.test('TraceManager.getStepCost', function (st) {
try { try {
const result = this._traceManager.getStepCost(23) const result = traceManager.getStepCost(23)
console.log(result) console.log(result)
st.ok(result === '3') st.ok(result === '3')
st.end() st.end()
@ -262,7 +262,7 @@ tape('TraceManager', function (t) {
t.test('TraceManager.getRemainingGas', function (st) { t.test('TraceManager.getRemainingGas', function (st) {
try { try {
const result = this._traceManager.getRemainingGas(55) const result = traceManager.getRemainingGas(55)
console.log(result) console.log(result)
st.ok(result === '79306') st.ok(result === '79306')
st.end() st.end()

Loading…
Cancel
Save