From d625d327ac717b90373f10ca3a6148d80957ecf8 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 24 Nov 2022 10:50:35 +0100 Subject: [PATCH] fix test (the constructor is now included) --- libs/remix-debug/test/decoder/localsTests/int.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/remix-debug/test/decoder/localsTests/int.ts b/libs/remix-debug/test/decoder/localsTests/int.ts index f0579ecdb3..dfd15263cb 100644 --- a/libs/remix-debug/test/decoder/localsTests/int.ts +++ b/libs/remix-debug/test/decoder/localsTests/int.ts @@ -54,9 +54,9 @@ module.exports = function (st, privateKey, contractBytecode, compilationResult, let functions2 = callTree.retrieveFunctionsStack(115) let functions3 = callTree.retrieveFunctionsStack(13) - st.equals(functions1.length, 1) - st.equals(functions2.length, 2) - st.equals(functions3.length, 0) + st.equals(functions1.length, 2) + st.equals(functions2.length, 3) + st.equals(functions3.length, 1) st.equal(functions1[0].gasCost, 55)