hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit caca921dd4b481a3bdc0a1b20ece8579ddc68e72
parent 83117d1f716b69558724f3d4cdfe0fb36f9a3976
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 10 Apr 2021 12:52:24 -0400

format::xml: remove test logging

Diffstat:
Mformat/xml/+test.ha | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/format/xml/+test.ha b/format/xml/+test.ha @@ -2,8 +2,6 @@ use io; use bufio; use strings; -use fmt; - @test fn basic() void = { xmltest("<?xml version='1.0' encoding='utf-8' ?> <root> @@ -83,8 +81,6 @@ fn xmltest(input: str, expected: []token) void = { }, at: attribute => { let ex = expected[i] as attribute; - fmt::errorfln("want: '{}'='{}', got: '{}'='{}'", - ex.0, ex.1, at.0, at.1); assert(at.0 == ex.0 && at.1 == ex.1); }, tx: text => {