修复失败率bug

This commit is contained in:
q4speed 2020-05-20 15:31:03 +08:00
parent 41bdc4e3f2
commit 385bd44b77
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@
},
fail() {
return (this.content.error / this.content.total).toFixed(0) + "%";
return (this.content.error / this.content.total * 100).toFixed(0) + "%";
},
assertions() {
return this.content.passAssertions + " / " + this.content.totalAssertions;