From 2193aeacb807883f2b9e0e68190d28861951df0c Mon Sep 17 00:00:00 2001 From: freewind Date: Sat, 24 Mar 2018 21:36:53 +0800 Subject: [PATCH] remove unnecessary test --- tests/ether/asm_test.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 tests/ether/asm_test.py diff --git a/tests/ether/asm_test.py b/tests/ether/asm_test.py deleted file mode 100644 index f3a58eb1..00000000 --- a/tests/ether/asm_test.py +++ /dev/null @@ -1,10 +0,0 @@ -from unittest import TestCase - -from mythril.ether import asm, util - -class AsmTestCase(TestCase): - - def test_disassemble(self): - code = util.safe_decode("0x6060") - instruction_list = asm.disassemble(code) - self.assertEqual(instruction_list, [{'address': 0, 'opcode': 'PUSH1', 'argument': '0x60'}])