diff options
Diffstat (limited to 'test/jitter/jitcore.py')
| -rw-r--r-- | test/jitter/jitcore.py | 2 |
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") |