Commit c4e6bf7a authored by Brian Curtin's avatar Brian Curtin

Tab test_repr_daemon over so it's included in ThreadTests.

Noticed by Amaury.
parent 01923b0c
...@@ -414,7 +414,7 @@ class ThreadTests(BaseTestCase): ...@@ -414,7 +414,7 @@ class ThreadTests(BaseTestCase):
e.isSet() e.isSet()
threading.activeCount() threading.activeCount()
def test_repr_daemon(self): def test_repr_daemon(self):
t = threading.Thread() t = threading.Thread()
self.assertFalse('daemon' in repr(t)) self.assertFalse('daemon' in repr(t))
t.daemon = True t.daemon = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment