1
0
forked from wrenn/wrenn

Fix lint warnings: drop deprecated Name field from snapshot response, check errcheck in benchmark

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-30 21:28:57 +06:00
parent 948db13bed
commit 377e856c8f
2 changed files with 1 additions and 2 deletions

View File

@ -113,6 +113,6 @@ func BenchmarkParseSandboxID(b *testing.B) {
s := FormatSandboxID(id)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ParseSandboxID(s)
_, _ = ParseSandboxID(s)
}
}