mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-15 07:43:26 +00:00
HTML generation in testament works again (#8702)
Fallout from the nil-str patch. Nothing to see here, move along.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user