diff options
Diffstat (limited to 'Lib/test/test_opcodes.py')
-rw-r--r-- | Lib/test/test_opcodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_opcodes.py b/Lib/test/test_opcodes.py index 94a0a92..5381e4d 100644 --- a/Lib/test/test_opcodes.py +++ b/Lib/test/test_opcodes.py @@ -19,7 +19,7 @@ for i in range(10): try: pass finally: pass n = n+i -if n <> 90: +if n != 90: raise TestFailed, 'try inside for' |