From 507469cdb63c34e46863d53d4c0266abb4c3556a Mon Sep 17 00:00:00 2001 From: fullstackjam Date: Tue, 19 May 2026 12:20:49 +0800 Subject: [PATCH] fix(test): correct brew tap name from openbootdotdev/openboot to openbootdotdev/tap brew tap user/foo maps to github.com/user/homebrew-foo; the actual repo is openbootdotdev/homebrew-tap so the correct tap is openbootdotdev/tap. This was silently failing (|| true) causing TestVM_Interactive_InstallScript to always skip since brew info openboot never found the formula. --- test/e2e/vm_helpers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/vm_helpers_test.go b/test/e2e/vm_helpers_test.go index cd491ee..522f208 100644 --- a/test/e2e/vm_helpers_test.go +++ b/test/e2e/vm_helpers_test.go @@ -24,7 +24,7 @@ func vmInstallViaBrew(t *testing.T, vm *testutil.MacHost) string { script := strings.Join([]string{ fmt.Sprintf("export PATH=%q", brewPath), - "brew tap openbootdotdev/openboot 2>/dev/null || true", + "brew tap openbootdotdev/tap 2>/dev/null || true", "brew install openboot", }, " && ")