diff options
author | Thomas Wouters <thomas@python.org> | 2007-09-19 17:27:29 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2007-09-19 17:27:29 +0000 |
commit | b3e6e8c8954db6e41524f6ac99683948391d6789 (patch) | |
tree | d1b27e0b4e369c25728a6771789ea84f402fe1d7 /Lib/test/test_decimal.py | |
parent | d544df7ddd0f4910e2eae33a596fae8cb7a5d6cb (diff) | |
download | cpython-git-b3e6e8c8954db6e41524f6ac99683948391d6789.tar.gz |
Fix obvious typo in threaded test.
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 2777b225c5..9281abc1d6 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -846,7 +846,7 @@ class DecimalUseOfContextTest(unittest.TestCase): th2.start() self.finish1.wait() - self.finish1.wait() + self.finish2.wait() return if threading is None: |