Skip to content

Commit

Permalink
test/exit: fix for the latest zig
Browse files Browse the repository at this point in the history
Signed-off-by: Tw <[email protected]>
  • Loading branch information
tw4452852 committed Aug 12, 2024
1 parent 2463f10 commit 0aea719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/exit.zig
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ test "exit" {
const r = f.reader();
const l = try r.readUntilDelimiterAlloc(allocator, '\n', std.math.maxInt(u32));
defer allocator.free(l);
try testing.expectStringEndsWith(l, "trace_printk: error occur at samples/exit.zig:5 return 1");
try testing.expectStringEndsWith(l, "trace_printk: error occur at exit.zig:5 return 1");
}
}

0 comments on commit 0aea719

Please sign in to comment.