diff options
Diffstat (limited to 'lib/bio/test/mem.myr')
-rw-r--r-- | lib/bio/test/mem.myr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bio/test/mem.myr b/lib/bio/test/mem.myr index f3135d2..a7cb613 100644 --- a/lib/bio/test/mem.myr +++ b/lib/bio/test/mem.myr @@ -7,21 +7,21 @@ const main = { f = bio.mkmem("hello world") match bio.read(f, buf[:3]) - | `bio.Ok "hel": + | `std.Ok "hel": /* ok */ | _: std.fatal("invalid read from memfile") ;; match bio.read(f, buf[:]) - | `bio.Ok "lo world": + | `std.Ok "lo world": /* ok */ | _: std.fatal("invalid read from memfile") ;; match bio.read(f, buf[:]) - | `bio.Eof: + | `std.Err `bio.Eof: /* ok */ | _: std.fatal("expected eof in memfile") |