Browse Source

Align test code directories to source files.

Maciej Gołaszewski 5 years ago
parent
commit
aeedfb2451

+ 3 - 3
packages/ckeditor5-table/tests/tablecellpropertiesediting.js

@@ -6,12 +6,12 @@
 import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 
-import TableEditing from '../src/tableediting';
-import TableCellPropertiesEditing from '../src/tablecellproperties/tablecellpropertiesediting';
+import TableEditing from '../../src/tableediting';
+import TableCellPropertiesEditing from '../../src/tablecellproperties/tablecellpropertiesediting';
 
 import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
-import { assertTableCellStyle, assertTRBLAttribute } from './_utils/utils';
+import { assertTableCellStyle, assertTRBLAttribute } from '../_utils/utils';
 
 describe( 'TableCellPropertiesEditing', () => {
 	let editor, model;

+ 5 - 4
packages/ckeditor5-table/tests/tablepropertiesediting.js

@@ -3,14 +3,15 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
-import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
+
+import TableEditing from '../../src/tableediting';
+import TableProperties from '../../src/tableproperties';
 
-import TableEditing from '../src/tableediting';
-import TableProperties from '../src/tableproperties';
-import { assertTableStyle, assertTRBLAttribute } from './_utils/utils';
 import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
+import { assertTableStyle, assertTRBLAttribute } from '../_utils/utils';
 
 describe( 'TableProperties', () => {
 	let editor, model;