ソースを参照

Code style issues.

Piotrek Koszuliński 8 年 前
コミット
a71760ec49

+ 2 - 2
packages/ckeditor5-engine/tests/controller/insertcontent.js

@@ -32,7 +32,7 @@ describe( 'DataController', () => {
 			expect( batch.deltas.length ).to.be.above( 0 );
 		} );
 
-		it( 'accepts DocumentFragment' , () => {
+		it( 'accepts DocumentFragment', () => {
 			const doc = new Document();
 			const dataController = new DataController( doc );
 			const batch = doc.batch();
@@ -47,7 +47,7 @@ describe( 'DataController', () => {
 			expect( getData( doc ) ).to.equal( 'xa[]x' );
 		} );
 
-		it( 'accepts Item' , () => {
+		it( 'accepts Text', () => {
 			const doc = new Document();
 			const dataController = new DataController( doc );
 			const batch = doc.batch();