diff options
Diffstat (limited to 'tests/thread/thread_lock1.py')
-rw-r--r-- | tests/thread/thread_lock1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thread/thread_lock1.py b/tests/thread/thread_lock1.py index 342c554f4..1d0701da0 100644 --- a/tests/thread/thread_lock1.py +++ b/tests/thread/thread_lock1.py @@ -30,7 +30,7 @@ print(lock.locked()) with lock: print(lock.locked()) -# test that lock is unlocked if an error is rasied +# test that lock is unlocked if an error is raised try: with lock: print(lock.locked()) |