From b9cbb0bd4159a28a369b1ac64bd46987f55fe3aa Mon Sep 17 00:00:00 2001 From: Tidy Date: Tue, 21 Oct 2025 02:04:45 +0000 Subject: [PATCH] Fix struct field alignment in logs_timeout_test.go Applied Go formatting to align struct field names for better readability. --- pkg/cli/logs_timeout_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/cli/logs_timeout_test.go b/pkg/cli/logs_timeout_test.go index 75894d0e5f..7a50bd168d 100644 --- a/pkg/cli/logs_timeout_test.go +++ b/pkg/cli/logs_timeout_test.go @@ -52,10 +52,10 @@ func TestTimeoutFlagParsing(t *testing.T) { // TestTimeoutLogic tests the timeout logic without making network calls func TestTimeoutLogic(t *testing.T) { tests := []struct { - name string - timeout int - elapsed time.Duration - shouldTimeout bool + name string + timeout int + elapsed time.Duration + shouldTimeout bool }{ { name: "no timeout set",