Kaynağa Gözat

Update code tests for markdown gfm plugin.

Maciej Gołaszewski 5 yıl önce
ebeveyn
işleme
a7dca16514

+ 2 - 2
packages/ckeditor5-markdown-gfm/tests/gfmdataprocessor/code.js

@@ -27,11 +27,11 @@ describe( 'GFMDataProcessor', () => {
 			testDataProcessor(
 				'regular text and` inline code`',
 
-				'<p>regular text and<code>inline code</code></p>',
+				'<p>regular text and<code> inline code</code></p>',
 
 				// When converting back it will be normalized and spaces
 				// at the beginning of inline code will be removed.
-				'regular text and`inline code`'
+				'regular text and `inline code`'
 			);
 		} );