about summary refs log tree commit diff stats
path: root/test/arch/mep/asm/test_asm.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2019-05-18 10:06:53 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2019-05-18 11:09:16 +0200
commite86dec41a03028340399f31844d0f5357eff52c7 (patch)
tree9d93aa60a6b3c033b0573f89b3b85ff5e2c116c1 /test/arch/mep/asm/test_asm.py
parent142fb3411317e6ce63e9c3f9154530d9e65c9664 (diff)
downloadmiasm-e86dec41a03028340399f31844d0f5357eff52c7.tar.gz
miasm-e86dec41a03028340399f31844d0f5357eff52c7.zip
Fix tipo
Diffstat (limited to 'test/arch/mep/asm/test_asm.py')
-rw-r--r--test/arch/mep/asm/test_asm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/mep/asm/test_asm.py b/test/arch/mep/asm/test_asm.py
index 7762669a..e8b8afb9 100644
--- a/test/arch/mep/asm/test_asm.py
+++ b/test/arch/mep/asm/test_asm.py
@@ -22,12 +22,12 @@ class TestMisc(object):
         for mn_str, mn_hex in unit_tests:
             print("-" * 49)  # Tests separation
 
-            # Dissassemble
+            # Disassemble
             mn_bin = decode_hex(mn_hex)
             mn = mn_mep.dis(mn_bin, "b")
 
             print("dis: %s -> %s" % (mn_hex.rjust(20), str(mn).rjust(20)))
-            assert(str(mn) == mn_str)  # dissassemble assertion
+            assert(str(mn) == mn_str)  # disassemble assertion
 
             # Assemble and return all possible candidates
             instr = mn_mep.fromstring(str(mn), "b")