summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_threading.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 201bfcb..bf9f90d 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -414,11 +414,11 @@ class ThreadTests(BaseTestCase):
e.isSet()
threading.activeCount()
-def test_repr_daemon(self):
- t = threading.Thread()
- self.assertFalse('daemon' in repr(t))
- t.daemon = True
- self.assertTrue('daemon' in repr(t))
+ def test_repr_daemon(self):
+ t = threading.Thread()
+ self.assertFalse('daemon' in repr(t))
+ t.daemon = True
+ self.assertTrue('daemon' in repr(t))
class ThreadJoinOnShutdown(BaseTestCase):