about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorPierre Lalet <pierre@droids-corp.org>2019-04-15 09:14:22 +0200
committerWilliam Bruneau <william.bruneau@epfedu.fr>2019-04-16 12:34:09 +0200
commit1b6ef950e78fcb90dc4af1c70b84dff8655790de (patch)
treef6090f558e2c0b092bce32102371cf1509993c44 /test
parentfdedf65cbc27db90aded1b70b7b9569f3cbe473e (diff)
downloadmiasm-1b6ef950e78fcb90dc4af1c70b84dff8655790de.tar.gz
miasm-1b6ef950e78fcb90dc4af1c70b84dff8655790de.zip
Update test/jitter/jitcore.py
Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr>
Diffstat (limited to 'test')
-rw-r--r--test/jitter/jitcore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jitter/jitcore.py b/test/jitter/jitcore.py
index c45fa13c..f75a8b98 100644
--- a/test/jitter/jitcore.py
+++ b/test/jitter/jitcore.py
@@ -41,7 +41,7 @@ assert jitter.cpu.EAX == 1
 
 try:
         jitter.cpu.EAX = -0x1ffffffff
-except TypeError as te:
+except TypeError:
         pass
 else:
         raise Exception("Should see that -0x1ffffffff is too big for EAX")