summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/tests/commands/test_runbuilds.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/tests/commands/test_runbuilds.py')
-rw-r--r--bitbake/lib/toaster/tests/commands/test_runbuilds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/commands/test_runbuilds.py b/bitbake/lib/toaster/tests/commands/test_runbuilds.py
index e223b95fcb..c77d6cf490 100644
--- a/bitbake/lib/toaster/tests/commands/test_runbuilds.py
+++ b/bitbake/lib/toaster/tests/commands/test_runbuilds.py
@@ -24,7 +24,7 @@ class KillRunbuilds(threading.Thread):
24 """ Kill the runbuilds process after an amount of time """ 24 """ Kill the runbuilds process after an amount of time """
25 def __init__(self, *args, **kwargs): 25 def __init__(self, *args, **kwargs):
26 super(KillRunbuilds, self).__init__(*args, **kwargs) 26 super(KillRunbuilds, self).__init__(*args, **kwargs)
27 self.setDaemon(True) 27 self.daemon = True
28 28
29 def run(self): 29 def run(self):
30 time.sleep(5) 30 time.sleep(5)