mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
12 lines
177 B
Go
12 lines
177 B
Go
package agent
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func missingAgentExecutable(tb testing.TB, name string) string {
|
|
tb.Helper()
|
|
return filepath.Join(tb.TempDir(), name)
|
|
}
|