@@ -195,7 +195,7 @@ func TestSelectForm(t *testing.T) {
195195 assert .Contains (t , view , "First letter" )
196196 })
197197
198- t .Run ("descriptions use em-dash separator with lipgloss enabled" , func (t * testing.T ) {
198+ t .Run ("descriptions use hyphen separator with lipgloss enabled" , func (t * testing.T ) {
199199 style .ToggleLipgloss (true )
200200 style .ToggleStyles (true )
201201 t .Cleanup (func () {
@@ -225,10 +225,10 @@ func TestSelectForm(t *testing.T) {
225225 f .Update (f .Init ())
226226
227227 view := ansi .Strip (f .View ())
228- assert .Contains (t , view , " — First letter" )
228+ assert .Contains (t , view , " - First letter" )
229229 })
230230
231- t .Run ("descriptions use em-dash separator without lipgloss" , func (t * testing.T ) {
231+ t .Run ("descriptions use hyphen separator without lipgloss" , func (t * testing.T ) {
232232 var selected string
233233 options := []string {"Alpha" , "Beta" }
234234 selectCfg := SelectPromptConfig {
@@ -243,7 +243,7 @@ func TestSelectForm(t *testing.T) {
243243 f .Update (f .Init ())
244244
245245 view := ansi .Strip (f .View ())
246- assert .Contains (t , view , "Alpha — First letter" )
246+ assert .Contains (t , view , "Alpha - First letter" )
247247 })
248248
249249 t .Run ("page size sets field height" , func (t * testing.T ) {
0 commit comments