Tab test_repr_daemon over so it's included in ThreadTests.
Noticed by Amaury.
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 @@
         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):