Skip to content

Commit

Permalink
Correção critério decisão entre regra ACT e outro tipo de teste
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosapaduarte committed Apr 15, 2024
1 parent 6fd6a4b commit 4bb0751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/evaluation/evaluation.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ export class EvaluationService {

result["ref_website"] = this.refWebsite(ref)
result["relation"] =
tests[test]["ref"].length > 3 ? "relationACT" : "relationT";
tests[test]["ref"].length > 4 ? "relationACT" : "relationT";
result["ref_related_sc"] = new Array();
result["value"] = tnum;
result["prio"] = color === "ok" ? 3 : color === "err" ? 1 : 2;
Expand Down

0 comments on commit 4bb0751

Please sign in to comment.