Skip to content

Commit

Permalink
Add quotes around test names
Browse files Browse the repository at this point in the history
  • Loading branch information
maximusunc committed Jun 25, 2024
1 parent 75a4adf commit dcde02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_harness/result_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ def collect_result(self, test: TestCase, asset: TestAsset, result: dict, url: st
ars_pk = result["pks"].get("parent_pk", None)
pk_url = f"https://arax.ncats.io/?r={ars_pk}" if ars_pk is not None else ""
self.csv += (
f"""{asset.name},{url},{pk_url},{test.id},{asset.id},{agent_results}\n"""
f""""{asset.name}",{url},{pk_url},{test.id},{asset.id},{agent_results}\n"""
)

0 comments on commit dcde02e

Please sign in to comment.