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:14 +0200
committerWilliam Bruneau <william.bruneau@epfedu.fr>2019-04-16 12:34:09 +0200
commitfdedf65cbc27db90aded1b70b7b9569f3cbe473e (patch)
tree1778207005aec7ad28f07b2285f5c4fc9e2d09d5 /test
parentcff804399287b7d86b9b8a4cbc41ebbb4a94d24f (diff)
downloadfocaccia-miasm-fdedf65cbc27db90aded1b70b7b9569f3cbe473e.tar.gz
focaccia-miasm-fdedf65cbc27db90aded1b70b7b9569f3cbe473e.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 5618d172..c45fa13c 100644
--- a/test/jitter/jitcore.py
+++ b/test/jitter/jitcore.py
@@ -21,7 +21,7 @@ assert jitter.cpu.RAX == 1
 
 try:
         jitter.cpu.RAX = 0x1ffffffffffffffff
-except TypeError as te:
+except TypeError:
         pass
 else:
         raise Exception("Should see that 0x1ffffffffffffffff is too big for RAX")