summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sqlite.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlite.zig b/sqlite.zig
index d195811..817cff8 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -824,6 +824,7 @@ test "sqlite: read in an anonymous struct" {
824 testing.expectEqualStrings(exp.name, row.?.name); 824 testing.expectEqualStrings(exp.name, row.?.name);
825 testing.expectEqualStrings(exp.name, mem.spanZ(&row.?.name_2)); 825 testing.expectEqualStrings(exp.name, mem.spanZ(&row.?.name_2));
826 testing.expectEqual(exp.age, row.?.age); 826 testing.expectEqual(exp.age, row.?.age);
827 testing.expect(row.?.is_id);
827} 828}
828 829
829test "sqlite: read in a Text struct" { 830test "sqlite: read in a Text struct" {