Parcourir la source

Fixed remaining references to utils.

Piotrek Koszuliński il y a 9 ans
Parent
commit
3af9e36d8b
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      packages/ckeditor5-ui/tests/editable/editable.js

+ 3 - 3
packages/ckeditor5-ui/tests/editable/editable.js

@@ -10,7 +10,7 @@
 import Editor from '/ckeditor5/core/editor.js';
 import Editable from '/ckeditor5/core/editable/editable.js';
 import Model from '/ckeditor5/core/ui/model.js';
-import coreTestUtils from '/tests/core/_utils/utils.js';
+import testUtils from '/tests/utils/_utils/utils.js';
 
 describe( 'Editable', () => {
 	let editable, editor;
@@ -43,7 +43,7 @@ describe( 'Editable', () => {
 		} );
 
 		it( 'binds this.isFocused to editable', () => {
-			coreTestUtils.assertBinding(
+			testUtils.assertBinding(
 				editable,
 				{ isFocused: false },
 				[
@@ -54,7 +54,7 @@ describe( 'Editable', () => {
 		} );
 
 		it( 'binds editable.isEditable to itself', () => {
-			coreTestUtils.assertBinding(
+			testUtils.assertBinding(
 				editable.viewModel,
 				{ isEditable: true },
 				[