refactor: Ignored allocation errors.

This commit is contained in:
2026-06-24 12:50:10 -04:00
parent 9256d94f70
commit 78984b57ff
3 changed files with 5 additions and 10 deletions

View File

@@ -436,7 +436,7 @@ test_db_sync_noop :: proc(t: ^testing.T) {
transmute([]u8)content,
context.temp_allocator,
)
hex_bytes, _ := hex.encode(digest, context.temp_allocator)
hex_bytes := hex.encode(digest, context.temp_allocator)
sha := string(hex_bytes)
db, ok := db_init()