From 81a4a6abb7a331c2a9d1227146b0ccb7f6a6cd4c Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Fri, 23 Jul 2010 16:30:10 +0000 Subject: Tab test_repr_daemon over so it's included in ThreadTests. Noticed by Amaury. --- Lib/test/test_threading.py | 10 +++++----- 1 file 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): -- cgit v0.12