@@ -293,15 +293,15 @@ func TestFormatNextActionsInternal(t *testing.T) {
293293 nextActions : map [string ]turn.Action {
294294 "user1" : {Kind : turn .ActionReview },
295295 },
296- expected : "review: @user1" ,
296+ expected : "* review* → @user1" ,
297297 },
298298 {
299299 name : "multiple users same action" ,
300300 nextActions : map [string ]turn.Action {
301301 "user1" : {Kind : turn .ActionReview },
302302 "user2" : {Kind : turn .ActionReview },
303303 },
304- expected : "review: @user1, @user2" ,
304+ expected : "* review* → @user1, @user2" ,
305305 },
306306 {
307307 name : "system user filtered out" ,
@@ -316,7 +316,7 @@ func TestFormatNextActionsInternal(t *testing.T) {
316316 "_system" : {Kind : turn .ActionReview },
317317 "user1" : {Kind : turn .ActionReview },
318318 },
319- expected : "review: @user1" ,
319+ expected : "* review* → @user1" ,
320320 },
321321 }
322322
@@ -650,7 +650,7 @@ func TestFormatNextActionsSuffixWithActions(t *testing.T) {
650650 Domain : "example.com" ,
651651 UserMapper : mapper ,
652652 },
653- expected : " → review: @user1" ,
653+ expected : " • * review* → @user1" ,
654654 },
655655 {
656656 name : "suffix with multiple users" ,
@@ -667,7 +667,7 @@ func TestFormatNextActionsSuffixWithActions(t *testing.T) {
667667 Domain : "example.com" ,
668668 UserMapper : mapper ,
669669 },
670- expected : " → review: " ,
670+ expected : " • * review* → " ,
671671 },
672672 {
673673 name : "suffix filters system user" ,
@@ -683,7 +683,7 @@ func TestFormatNextActionsSuffixWithActions(t *testing.T) {
683683 Domain : "example.com" ,
684684 UserMapper : mapper ,
685685 },
686- expected : " → review" ,
686+ expected : " • review" ,
687687 },
688688 }
689689
@@ -693,8 +693,8 @@ func TestFormatNextActionsSuffixWithActions(t *testing.T) {
693693 // For tests with multiple users, just check that result starts with the prefix
694694 // since map iteration order is not guaranteed
695695 if tt .name == "suffix with multiple users" {
696- if ! contains (result , " → review: " ) {
697- t .Errorf ("expected result to contain \" → review: \" , got: %q" , result )
696+ if ! contains (result , " • * review* → " ) {
697+ t .Errorf ("expected result to contain \" • * review* → \" , got: %q" , result )
698698 }
699699 } else if result != tt .expected {
700700 t .Errorf ("expected %q, got %q" , tt .expected , result )
0 commit comments