@@ -560,13 +560,13 @@ describe('markdown-toolbar-element', function () {
560560 it ( 'undo two lines list if two lines are selected' , function ( ) {
561561 setVisualValue ( '|1. One\n2. Two|\n\nThree\n' )
562562 clickToolbar ( 'md-ordered-list' )
563- assert . equal ( '|One\nTwo\n\n|Three \n' , visualValue ( ) )
563+ assert . equal ( '|One\nTwo| \n\nThree \n' , visualValue ( ) )
564564 } )
565565
566566 it ( 'undo two lines list if 2 lines are partially selected' , function ( ) {
567567 setVisualValue ( '1. O|ne\n2. Tw|o\n\nThree\n' )
568568 clickToolbar ( 'md-ordered-list' )
569- assert . equal ( '|One\nTwo\n\n|Three \n' , visualValue ( ) )
569+ assert . equal ( '|One\nTwo| \n\nThree \n' , visualValue ( ) )
570570 } )
571571 } )
572572
@@ -646,13 +646,13 @@ describe('markdown-toolbar-element', function () {
646646 it ( 'undo two lines list if two lines are selected' , function ( ) {
647647 setVisualValue ( '|- One\n- Two|\n\nThree\n' )
648648 clickToolbar ( 'md-unordered-list' )
649- assert . equal ( '|One\nTwo\n\n|Three \n' , visualValue ( ) )
649+ assert . equal ( '|One\nTwo| \n\nThree \n' , visualValue ( ) )
650650 } )
651651
652652 it ( 'undo two lines list if 2 lines are partially selected' , function ( ) {
653653 setVisualValue ( '- O|ne\n- Tw|o\n\nThree\n' )
654654 clickToolbar ( 'md-unordered-list' )
655- assert . equal ( '|One\nTwo\n\n|Three \n' , visualValue ( ) )
655+ assert . equal ( '|One\nTwo| \n\nThree \n' , visualValue ( ) )
656656 } )
657657 } )
658658
@@ -748,7 +748,7 @@ describe('markdown-toolbar-element', function () {
748748 it ( 'undo an ordered list by selecting multiple styled lines' , function ( ) {
749749 setVisualValue ( '|1. One\n2. Two\n3. Three|\n' )
750750 clickToolbar ( 'md-ordered-list' )
751- assert . equal ( '|One\nTwo\nThree\n| ' , visualValue ( ) )
751+ assert . equal ( '|One\nTwo\nThree|\n ' , visualValue ( ) )
752752 } )
753753 } )
754754
0 commit comments