Fix counting fails in test page

This commit fixes the typo to count fails correctly.

Partial-Bug: #1590098
Change-Id: I7b4bdcf955c4bedf9acb955fc9a7989b443f7bca
This commit is contained in:
Masayuki Igawa 2016-07-12 14:57:26 +09:00
parent dcec891e5f
commit 8c331013f1
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function TestController(
count.passes += 1;
}
else if (status == 'fail' || status == 'unxsuccess') {
count.failes += 1;
count.fails += 1;
}
else if (status == 'skip') {
count.skips += 1;