Commit c7b4b17ba2
Changed files (1)
test
cases
test/cases/safety/slice sentinel mismatch - floats.zig
@@ -2,7 +2,7 @@ const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = stack_trace;
- if (std.mem.eql(u8, message, "sentinel mismatch: expected 1.2e0, found 4e0")) {
+ if (std.mem.eql(u8, message, "sentinel mismatch: expected 1.2, found 4")) {
std.process.exit(0);
}
std.process.exit(1);