浏览代码

Fix wrong import in InsertColumnCommand tests.

Maciej Gołaszewski 5 年之前
父节点
当前提交
cbbc30892c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-table/tests/commands/insertcolumncommand.js

+ 2 - 2
packages/ckeditor5-table/tests/commands/insertcolumncommand.js

@@ -10,7 +10,7 @@ import { getData, setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model
 import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
 import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
 
 
 import TableSelection from '../../src/tableselection';
 import TableSelection from '../../src/tableselection';
-import TableCellPropertiesEditing from '../../src/tablecellproperties/tablecellpropertiesediting';
+import TableEditing from '../../src/tableediting';
 import { assertSelectedCells, modelTable } from '../_utils/utils';
 import { assertSelectedCells, modelTable } from '../_utils/utils';
 
 
 import InsertColumnCommand from '../../src/commands/insertcolumncommand';
 import InsertColumnCommand from '../../src/commands/insertcolumncommand';
@@ -21,7 +21,7 @@ describe( 'InsertColumnCommand', () => {
 	beforeEach( () => {
 	beforeEach( () => {
 		return ModelTestEditor
 		return ModelTestEditor
 			.create( {
 			.create( {
-				plugins: [ Paragraph, TableCellPropertiesEditing, TableSelection, HorizontalLineEditing ]
+				plugins: [ Paragraph, TableEditing, TableSelection, HorizontalLineEditing ]
 			} )
 			} )
 			.then( newEditor => {
 			.then( newEditor => {
 				editor = newEditor;
 				editor = newEditor;