build: port to zig-0.16.0-dev.3133+5ec8e45f3

This commit is contained in:
CJ van den Berg 2026-04-09 18:50:30 +02:00
parent 66c28df31b
commit 1b7cd31925
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 10 additions and 11 deletions

View file

@ -55,7 +55,7 @@ test "cbor.fmtBuf success" {
test "cbor.fmtBuf overflow" {
var buf: [4]u8 = undefined;
try expectError(error.NoSpaceLeft, fmtBuf(&buf, .{ "five", 5, "four", 4, .{ "three", 3 } }));
try expectError(error.WriteFailed, fmtBuf(&buf, .{ "five", 5, "four", 4, .{ "three", 3 } }));
}
test "cbor exit message" {