fix(测试跟踪): 测试计划报告通过率计算有误
--bug=1014857 --user=陈建星 [测试计划]github#15750一共8条用例,通过了4条,2条未执行,2条进行中,通过率这个100% https://www.tapd.cn/55049933/s/1201421
This commit is contained in:
parent
b385953245
commit
b9d0402806
|
@ -1820,7 +1820,7 @@ public class TestPlanService {
|
|||
report.setExecuteRate(0.0);
|
||||
}
|
||||
if (report.getPassCount() != 0 && report.getCaseCount() != null) {
|
||||
report.setPassRate(report.getPassCount() * 0.1 * 10 / report.getExecuteCount());
|
||||
report.setPassRate(report.getPassCount() * 0.1 * 10 / report.getCaseCount());
|
||||
} else {
|
||||
report.setPassRate(0.0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue