Commit ad65ac42 authored by Iuri Matias's avatar Iuri Matias Committed by yann300

fix trace manager test

parent 3c19b6dd
...@@ -251,7 +251,7 @@ tape('TraceManager', function (t) { ...@@ -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) { ...@@ -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()
......
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