From 0bac9b6f63e385177e2fedd84b47c1a9850d9b13 Mon Sep 17 00:00:00 2001 From: Jenna Goldstrich Date: Thu, 27 Oct 2022 14:52:26 -0700 Subject: [PATCH] Remove a skip for darwin arm64 (m1/m2 macs) for exec tests. (#12088) --- command/exec_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/command/exec_test.go b/command/exec_test.go index bdee7c80b..f85849d45 100644 --- a/command/exec_test.go +++ b/command/exec_test.go @@ -27,10 +27,6 @@ func HasExec() bool { switch runtime.GOOS { case "js": return false - case "darwin": - if runtime.GOARCH == "arm64" { - return false - } } return true }