Przeglądaj źródła

Fixed test case name.

Oskar Wrobel 9 lat temu
rodzic
commit
7b7e767dcf

+ 1 - 1
packages/ckeditor5-basic-styles/tests/boldengine.js

@@ -68,7 +68,7 @@ describe( 'BoldEngine', () => {
 	} );
 
 	describe( 'editing pipeline conversion', () => {
-		it( 'should convert paragraph', () => {
+		it( 'should convert attribute', () => {
 			setModelData( doc, '<$text bold="true">foo</$text>bar' );
 
 			expect( getViewData( editor.editing.view, { withoutSelection: true } ) ).to.equal( '<strong>foo</strong>bar' );

+ 1 - 1
packages/ckeditor5-basic-styles/tests/italicengine.js

@@ -68,7 +68,7 @@ describe( 'ItalicEngine', () => {
 	} );
 
 	describe( 'editing pipeline conversion', () => {
-		it( 'should convert paragraph', () => {
+		it( 'should convert attribute', () => {
 			setModelData( doc, '<$text italic="true">foo</$text>bar' );
 
 			expect( getViewData( editor.editing.view, { withoutSelection: true } ) ).to.equal( '<em>foo</em>bar' );