Skip to content

Commit edafd12

Browse files
committed
fix compile error in TrigramStore test
I find it somewhat impressive how many times I forget to actually test my code before I commit it.
1 parent 6970874 commit edafd12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TrigramStore.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ test CuckooFilter {
453453
var gen_prng: std.Random.DefaultPrng = .init(gen_prng_seed);
454454
for (0..element_count) |_| {
455455
const trigram: Trigram = @bitCast(gen_prng.random().int(u24));
456-
entries.putAssumeCapacity(allocator, trigram, {});
456+
entries.putAssumeCapacity(trigram, {});
457457
try filter.append(filter_prng.random(), trigram);
458458
}
459459

0 commit comments

Comments
 (0)