diff options
| -rw-r--r-- | sqlite.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -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 | ||
| 829 | test "sqlite: read in a Text struct" { | 830 | test "sqlite: read in a Text struct" { |