From 138ce160109a0178b308510702326fe03ca9ed84 Mon Sep 17 00:00:00 2001 From: Forbes Date: Sat, 14 Feb 2026 14:02:48 -0600 Subject: [PATCH] fix: remove unreachable code in testutil.findProjectRoot --- internal/testutil/testutil.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/testutil/testutil.go b/internal/testutil/testutil.go index f00d5a5..35b99ae 100644 --- a/internal/testutil/testutil.go +++ b/internal/testutil/testutil.go @@ -3,7 +3,6 @@ package testutil import ( "context" - "fmt" "os" "path/filepath" "sort" @@ -112,6 +111,4 @@ func findProjectRoot(t *testing.T) string { } dir = parent } - - panic(fmt.Sprintf("unreachable")) }