Skip to content

Commit 3517993

Browse files
Thomas StrombergThomas Stromberg
authored andcommitted
add ellipsis
1 parent c75fc96 commit 3517993

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/goose/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func TestMenuItemTitleTransition(t *testing.T) {
119119
title = fmt.Sprintf("%s — %s", title, actionDisplay)
120120
} else if pr.TestState == "running" {
121121
// Show "tests running" as a fallback when no specific action is available
122-
title = fmt.Sprintf("%s — tests running", title)
122+
title = fmt.Sprintf("%s — tests running...", title)
123123
}
124124

125125
if pr.NeedsReview {
@@ -142,7 +142,7 @@ func TestMenuItemTitleTransition(t *testing.T) {
142142
title = fmt.Sprintf("%s — %s", title, actionDisplay)
143143
} else if pr.TestState == "running" {
144144
// Show "tests running" as a fallback when no specific action is available
145-
title = fmt.Sprintf("%s — tests running", title)
145+
title = fmt.Sprintf("%s — tests running...", title)
146146
}
147147

148148
if pr.IsBlocked {

cmd/goose/ui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ func (app *App) addPRSection(ctx context.Context, prs []PR, sectionTitle string,
315315
title = fmt.Sprintf("%s — %s", title, actionDisplay)
316316
} else if sortedPRs[prIndex].TestState == "running" {
317317
// Show "tests running" as a fallback when no specific action is available
318-
title = fmt.Sprintf("%s — tests running", title)
318+
title = fmt.Sprintf("%s — tests running...", title)
319319
}
320320

321321
// Add bullet point or emoji based on PR status

0 commit comments

Comments
 (0)