Commit 90e88e34 authored by Sebastien Robin's avatar Sebastien Robin

check strict equality to avoid mix of unit test results

parent 47c28564
...@@ -125,7 +125,7 @@ class TaskDistributionTool(BaseTool): ...@@ -125,7 +125,7 @@ class TaskDistributionTool(BaseTool):
result_list = portal.test_result_module.searchFolder( result_list = portal.test_result_module.searchFolder(
portal_type="Test Result", portal_type="Test Result",
simulation_state="started", simulation_state="started",
title=test_title, title="=%s" % test_title,
sort_on=(("creation_date","descending"),), sort_on=(("creation_date","descending"),),
limit=1) limit=1)
if result_list: if result_list:
......
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