We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0155a63 commit 644e21bCopy full SHA for 644e21b
sqlite.zig
@@ -4051,8 +4051,8 @@ test "reuse same field twice in query string" {
4051
}
4052
4053
test "fuzzing" {
4054
- const global = struct {
4055
- fn testOne(input: []const u8) anyerror!void {
+ const Context = struct {
+ fn testOne(_: @This(), input: []const u8) anyerror!void {
4056
var db = try Db.init(.{
4057
.mode = .Memory,
4058
.open_flags = .{
@@ -4114,5 +4114,5 @@ test "fuzzing" {
4114
4115
};
4116
4117
- try testing.fuzz(global.testOne, .{});
+ try testing.fuzz(Context{}, Context.testOne, .{});
4118
0 commit comments