From 56f5cd450c2089b2474245db6ccf56a87f9b6f50 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Fri, 1 Jan 2021 21:50:37 +0100 Subject: check the weight field too --- sqlite.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'sqlite.zig') diff --git a/sqlite.zig b/sqlite.zig index ec46ed9..3291fbd 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -1073,6 +1073,7 @@ test "sqlite: read all users into a struct" { testing.expectEqual(exp.id, row.id); testing.expectEqualStrings(exp.name, row.name); testing.expectEqual(exp.age, row.age); + testing.expectEqual(exp.weight, row.weight); } } -- cgit v1.2.3