diff options
| -rw-r--r-- | sqlite.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -1073,6 +1073,7 @@ test "sqlite: read all users into a struct" { | |||
| 1073 | testing.expectEqual(exp.id, row.id); | 1073 | testing.expectEqual(exp.id, row.id); |
| 1074 | testing.expectEqualStrings(exp.name, row.name); | 1074 | testing.expectEqualStrings(exp.name, row.name); |
| 1075 | testing.expectEqual(exp.age, row.age); | 1075 | testing.expectEqual(exp.age, row.age); |
| 1076 | testing.expectEqual(exp.weight, row.weight); | ||
| 1076 | } | 1077 | } |
| 1077 | } | 1078 | } |
| 1078 | 1079 | ||