fix: resolve lint issues in handlers and middleware
All checks were successful
Check / check (pull_request) Successful in 11m26s

This commit is contained in:
clawbot
2026-02-20 03:35:44 -08:00
parent 6cfd5023f9
commit 327d7fb982
5 changed files with 66 additions and 42 deletions

View File

@@ -780,6 +780,7 @@ func TestHandleVolumeAddValidatesPaths(t *testing.T) {
// Check if volume was created by listing volumes
volumes, _ := createdApp.GetVolumes(context.Background())
found := false
for _, v := range volumes {
if v.HostPath == tt.hostPath && v.ContainerPath == tt.containerPath {
found = true