File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -526,19 +526,19 @@ describe('markdown-toolbar-element', function () {
526526 assertNormalizedList ( 'One\n\n- |Two|\n\nThree\n' , orderedList )
527527 } )
528528
529- it ( 'turns selection into list if partial line is selected' , function ( ) {
529+ it ( 'turns line into list if partial line is selected' , function ( ) {
530530 setVisualValue ( 'One\nT|w|o\nThree\n' )
531531 clickToolbar ( toolbarItem )
532532 assertNormalizedList ( 'One\n\n- T|w|o\n\nThree\n' , orderedList )
533533 } )
534534
535- it ( 'turns selection into list if two lines are selected' , function ( ) {
535+ it ( 'turns two lines into list if two lines are selected' , function ( ) {
536536 setVisualValue ( '|One\nTwo|\nThree\n' )
537537 clickToolbar ( toolbarItem )
538538 assertNormalizedList ( '|- One\n- Two|\n\nThree\n' , orderedList )
539539 } )
540540
541- it ( 'turns selection into list if 2 lines are partially selected' , function ( ) {
541+ it ( 'turns two lines into list if 2 lines are partially selected' , function ( ) {
542542 setVisualValue ( 'O|ne\nTw|o\nThree\n' )
543543 clickToolbar ( toolbarItem )
544544 assertNormalizedList ( '- O|ne\n- Tw|o\n\nThree\n' , orderedList )
You can’t perform that action at this time.
0 commit comments