From c745f12751308643d7df4a10a18e1779143870cf Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Tue, 13 Oct 2020 10:53:30 +0100 Subject: [PATCH] Removed test case --- libs/remix-debug/test/decoder/contracts/structArrayLocal.js | 4 ---- libs/remix-debug/test/decoder/localsTests/structArray.js | 4 +--- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/libs/remix-debug/test/decoder/contracts/structArrayLocal.js b/libs/remix-debug/test/decoder/contracts/structArrayLocal.js index 48e695a5f5..c8391005d8 100644 --- a/libs/remix-debug/test/decoder/contracts/structArrayLocal.js +++ b/libs/remix-debug/test/decoder/contracts/structArrayLocal.js @@ -79,10 +79,6 @@ contract structArrayLocal { arrayStruct.b[1] = -23; arrayStruct.b[2] = -3; arrayStruct.c = enumdef.three; - bytes32[] memory dynamic = new bytes32[](2); - - dynamic[0] = 0x7465737400000000000000000000000000000000000000000000000000000000; - dynamic[1] = 0x7465737400000000000000000000000000000000000000000000000000000000; } } `} diff --git a/libs/remix-debug/test/decoder/localsTests/structArray.js b/libs/remix-debug/test/decoder/localsTests/structArray.js index 8b5b5d99bf..35a0f4cf50 100644 --- a/libs/remix-debug/test/decoder/localsTests/structArray.js +++ b/libs/remix-debug/test/decoder/localsTests/structArray.js @@ -30,7 +30,7 @@ module.exports = function (st, vm, privateKey, contractBytecode, compilationResu st.fail(error) }) callTree.event.register('callTreeReady', (scopes, scopeStarts) => { - helper.decodeLocals(st, 1719, traceManager, callTree, function (locals) { + helper.decodeLocals(st, 1622, traceManager, callTree, function (locals) { try { st.equals(locals['bytesSimple'].length, '0x14') st.equals(locals['bytesSimple'].value, '0x746573745f7375706572') @@ -91,8 +91,6 @@ module.exports = function (st, vm, privateKey, contractBytecode, compilationResu st.equals(locals['arrayStruct'].value.b.value[1].value, '-23') st.equals(locals['arrayStruct'].value.b.value[2].value, '-3') st.equals(locals['arrayStruct'].value.c.value, 'three') - st.equals(locals['dynamic'].value[0], '0x74657374') - st.equals(locals['dynamic'].value[1], '0x74657374') st.equals(Object.keys(locals).length, 8) } catch (e) {