Browse Source

Removed unused variable.

Kamil Piechaczek 7 years ago
parent
commit
641e0250dd

+ 3 - 2
packages/ckeditor5-engine/tests/view/manual/noselection-iframe.js

@@ -3,7 +3,7 @@
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
-/* globals document, encodeURIComponent */
+/* globals document */
 
 
 import View from '../../../src/view/view';
 import View from '../../../src/view/view';
 import { setData } from '../../../src/dev-utils/view';
 import { setData } from '../../../src/dev-utils/view';
@@ -21,5 +21,6 @@ iframe.addEventListener( 'load', () => {
 
 
 	setData( view,
 	setData( view,
 		'<container:p>foo</container:p>' +
 		'<container:p>foo</container:p>' +
-		'<container:p>bar</container:p>' );
+		'<container:p>bar</container:p>' 
+	);
 } );
 } );