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