mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
fix test case expected float value
it's better now
This commit is contained in:
parent
911cd2611f
commit
c7b4b17ba2
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue