From b3e6e8c8954db6e41524f6ac99683948391d6789 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 19 Sep 2007 17:27:29 +0000 Subject: [PATCH] Fix obvious typo in threaded test. --- Lib/test/test_decimal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 2777b225c5fb..9281abc1d62b 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -846,7 +846,7 @@ def test_threading(self): th2.start() self.finish1.wait() - self.finish1.wait() + self.finish2.wait() return if threading is None: