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

Code style fix - move imports.

Maciej Gołaszewski 5 лет назад
Родитель
Сommit
9e423fba88
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-table/tests/tablenavigation.js

+ 1 - 1
packages/ckeditor5-table/tests/tablenavigation.js

@@ -8,6 +8,7 @@ import Table from '../src/table';
 import TableEditing from '../src/tableediting';
 import TableSelection from '../src/tableselection';
 import { modelTable } from './_utils/utils';
+import { getTableCellsContainingSelection } from '../src/utils/selection';
 
 import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
@@ -25,7 +26,6 @@ import { getData as getModelData, setData as setModelData } from '@ckeditor/cked
 import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
 import global from '@ckeditor/ckeditor5-utils/src/dom/global';
 import env from '@ckeditor/ckeditor5-utils/src/env';
-import { getTableCellsContainingSelection } from '../src/utils/selection';
 
 describe( 'TableNavigation', () => {
 	let editor, model, modelRoot, tableSelection, tableNavigation, selection;