diff options
| author | 2021-01-01 21:50:37 +0100 | |
|---|---|---|
| committer | 2021-01-01 21:50:58 +0100 | |
| commit | 56f5cd450c2089b2474245db6ccf56a87f9b6f50 (patch) | |
| tree | 70453073aea82e39e3c0b9042b8c6e4bcee04c03 /sqlite.zig | |
| parent | Merge branch 'statement-reuse' (diff) | |
| download | zig-sqlite-56f5cd450c2089b2474245db6ccf56a87f9b6f50.tar.gz zig-sqlite-56f5cd450c2089b2474245db6ccf56a87f9b6f50.tar.xz zig-sqlite-56f5cd450c2089b2474245db6ccf56a87f9b6f50.zip | |
check the weight field too
Diffstat (limited to 'sqlite.zig')
| -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 | ||