summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py
index 35466c1..6ee906c 100644
--- a/Lib/test/test_queue.py
+++ b/Lib/test/test_queue.py
@@ -54,7 +54,7 @@ class BlockingTestMixin:
self.result = block_func(*block_args)
# If block_func returned before our thread made the call, we failed!
if not thread.startedEvent.is_set():
- self.fail("blocking function '%r' appeared not to block" %
+ self.fail("blocking function %r appeared not to block" %
block_func)
return self.result
finally: