| commit | 208938f612a498ec6b594564a643fe9172da061f | [log] [tgz] |
|---|---|---|
| author | Philip Zeyliger <philip@bold.dev> | Tue May 13 17:17:18 2025 -0700 |
| committer | Philip Zeyliger <philip@bold.dev> | Tue May 13 17:45:17 2025 -0700 |
| tree | 80a8c313fbd548fc488ffeab3f00357eb7286726 | |
| parent | 3e9d80c6b6315ccf1754996e9b691555915d9839 [diff] [blame] |
bash: Shorten bash tool default timeout to 10s.
diff --git a/claudetool/bash_test.go b/claudetool/bash_test.go index 5091e84..45dd4fe 100644 --- a/claudetool/bash_test.go +++ b/claudetool/bash_test.go
@@ -394,7 +394,7 @@ Background: false, } fgTimeout := foreground.timeout() - expectedFg := 1 * time.Minute + expectedFg := 10 * time.Second if fgTimeout != expectedFg { t.Errorf("Expected foreground default timeout to be %v, got %v", expectedFg, fgTimeout) }