diff options
Diffstat (limited to 'mbld/subtest.myr')
-rw-r--r-- | mbld/subtest.myr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbld/subtest.myr b/mbld/subtest.myr index 5f0668f..557746d 100644 --- a/mbld/subtest.myr +++ b/mbld/subtest.myr @@ -75,7 +75,7 @@ const showtests = {b, cmd, failed, f, log, ntests curtest = "" nresults = 0 mbldput("\n") - for ln in bio.byline(f) + for ln : bio.byline(f) ln = std.strstrip(ln) match testhead(ln) | `std.None: @@ -127,7 +127,7 @@ const checktests = {ntests, nresults const starttest = {curtest, t if curtest#.len != 0 - std.fatal("malformed input: test {} nested in {}\n", t, curtest) + std.fatal("malformed input in test {} nested : {}\n", t, curtest) ;; mbldput("\trun {}:\t", std.strstrip(t)) curtest# = t |