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