HTML generation in testament works again (#8702)

Fallout from the nil-str patch. Nothing to see here, move along.
This commit is contained in:
LemonBoy
2018-08-21 15:15:14 +02:00
committed by Andreas Rumpf
parent cf20c4460c
commit 8e435d7b0c

View File

@@ -22,8 +22,8 @@ proc generateTestResultPanelPartial(outfile: File, testResultRow: JsonNode) =
target = testResultRow["target"].str.htmlQuote()
action = testResultRow["action"].str.htmlQuote()
result = htmlQuote testResultRow["result"].str
expected = testResultRow["expected"].str
gotten = testResultRow["given"].str
expected = testResultRow["expected"].getStr
gotten = testResultRow["given"].getStr
timestamp = "unknown"
var
panelCtxClass, textCtxClass, bgCtxClass: string