8
0
Просмотр исходного кода

Tests: Fixed missing quote. Tests are passing.

Marek Lewandowski 6 лет назад
Родитель
Сommit
c8e9d501e3
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-image/tests/imageresize.js

+ 1 - 1
packages/ckeditor5-image/tests/imageresize.js

@@ -69,7 +69,7 @@ describe( 'ImageResize', () => {
 
 	describe( 'conversion', () => {
 		it( 'upcasts 100px width correctly', () => {
-			editor.setData( `<figure class="image" style="width:100px;"><img src="${ IMAGE_SRC_FIXTURE }></figure>` );
+			editor.setData( `<figure class="image" style="width:100px;"><img src="${ IMAGE_SRC_FIXTURE }"></figure>` );
 
 			expect( editor.model.document.getRoot().getChild( 0 ).getAttribute( 'width' ) ).to.equal( '100px' );
 		} );