| author | |
| committer | |
| log | 4a0bb6258406aa1f4f876116d47be6b93e115e23 |
| tree | 086f8a6ac8ab82c72c59b4499210d3f8205be972 |
| parent | fd61a084e49037bc53dd5150bd27e28758b7aecf |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
std/io.zig+1-1| ... | ... | @@ -408,7 +408,7 @@ test "io.BufferedInStream" { |
| 408 | 408 | const stream = &buf_in_stream.stream; |
| 409 | 409 | |
| 410 | 410 | const res = try stream.readAllAlloc(allocator, str.len + 1); |
| 411 | debug.assertOrPanic(mem.eql(u8, str, res)); | |
| 411 | testing.expectEqualSlices(u8, str, res); | |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /// Creates a stream which supports 'un-reading' data, so that it can be read again. |