()
| 392 | } |
| 393 | |
| 394 | func archString() string { |
| 395 | arch := runtime.GOARCH |
| 396 | if arch == "amd64" { |
| 397 | return "x64" |
| 398 | } |
| 399 | return arch |
| 400 | } |
| 401 | |
| 402 | func TestDownloadCopilot(t *testing.T) { |
| 403 | // Skip on unsupported architectures |
no outgoing calls
no test coverage detected