diff --git a/progtest/src/reporter/HtmlConsoleOutput.js b/progtest/src/reporter/HtmlConsoleOutput.js index 55b4d84b..61e1d632 100644 --- a/progtest/src/reporter/HtmlConsoleOutput.js +++ b/progtest/src/reporter/HtmlConsoleOutput.js @@ -68,7 +68,7 @@ module.exports = Trait( 'HtmlConsoleOutput' ) const ind = this.__super( result ); const title = `[#${i}] ` + this._titleify( desc ); - return `${ind}`; + return `${ind}`; }, @@ -135,8 +135,8 @@ module.exports = Trait( 'HtmlConsoleOutput' ) */ 'override protected createFailureHeading'( i, desc ) { - return `` + - `[#${i+1}] ${desc}
`; + return `` + + `[#${i}] ${desc}
`; },