Commit 364be170 authored by Sebastien Robin's avatar Sebastien Robin

taskdistribution: fixed undefined variable introduced by d86e6370

parent 9e91eaa7
...@@ -174,7 +174,7 @@ class TestResultLineProxy(RPCRetry): ...@@ -174,7 +174,7 @@ class TestResultLineProxy(RPCRetry):
if kw: if kw:
self._logger.info('Extra parameters provided: %r', kw) self._logger.info('Extra parameters provided: %r', kw)
status_dict.update(kw) status_dict.update(kw)
self._retryRPC('stopUnitTest', (self._test_result_line_path,self.node_title, self._retryRPC('stopUnitTest', (self._test_result_line_path,
status_dict)) status_dict))
class TestResultProxy(RPCRetry): class TestResultProxy(RPCRetry):
...@@ -220,7 +220,7 @@ class TestResultProxy(RPCRetry): ...@@ -220,7 +220,7 @@ class TestResultProxy(RPCRetry):
Return an TestResultLineProxy instance, or None if there is nothing to Return an TestResultLineProxy instance, or None if there is nothing to
do. do.
""" """
result = self._retryRPC('startUnitTest', (self._test_result_path,self.node_title, result = self._retryRPC('startUnitTest', (self._test_result_path,
exclude_list)) exclude_list))
if result: if result:
line_url, test_name = result line_url, test_name = result
......
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