| author | |
| committer | |
| log | 2db3c770608a4318269fc5a3b61bd50e6c6f6a3f |
| tree | d094057a89bdc3a099e231f34b13ce5afbae0ecf |
| parent | 4ceefca14be313e91a248fdc532e37edf4a02a51 |
| signature |
1 files changed, 2 insertions(+), 1 deletions(-)
lib/std/io/Reader/test.zig+2-1| ... | ... | @@ -1,3 +1,4 @@ |
| 1 | const builtin = @import("builtin"); | |
| 1 | 2 | const std = @import("../../std.zig"); |
| 2 | 3 | const testing = std.testing; |
| 3 | 4 | |
| ... | ... | @@ -11,7 +12,7 @@ test "Reader" { |
| 11 | 12 | b = 99, |
| 12 | 13 | c = 2, |
| 13 | 14 | d = 3, |
| 14 | }, undefined)) == .c); | |
| 15 | }, builtin.cpu.arch.endian())) == .c); | |
| 15 | 16 | try testing.expectError(error.EndOfStream, reader.readByte()); |
| 16 | 17 | } |
| 17 | 18 |