report json

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-03-20 09:11:39 -07:00
parent 07c7eeb624
commit 2ed1c2c06b
1 changed files with 2 additions and 2 deletions

View File

@ -1057,14 +1057,14 @@ ReportPath::pathEndpoint(const PathEnd *end) const
void
ReportPath::reportJsonHeader() const
{
report_->report("{{\"checks\": [");
report_->report("{\"checks\": [");
}
void
ReportPath::reportJsonFooter() const
{
report_->report("]");
report_->report("}}");
report_->report("}");
}
void