Browse Source

Fix: Paths to ckeditor5-utils are now correct in ButtonGroupView tests.

Maciej Gołaszewski 8 years ago
parent
commit
7096c83e13
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/ckeditor5-ui/tests/buttongroup/buttongroupview.js

+ 3 - 3
packages/ckeditor5-ui/tests/buttongroup/buttongroupview.js

@@ -8,9 +8,9 @@ import ButtonGroupView from '../../src/buttongroup/buttongroupview';
 import ButtonView from '../../src/button/buttonview';
 import ViewCollection from '../../src/viewcollection';
 import FocusCycler from '../../src/focuscycler';
-import FocusTracker from '../../../ckeditor5-utils/src/focustracker';
-import KeystrokeHandler from '../../../ckeditor5-utils/src/keystrokehandler';
-import { keyCodes } from '../../../ckeditor5-utils/src/keyboard';
+import FocusTracker from '@ckeditor/ckeditor5-utils/src/focustracker';
+import KeystrokeHandler from '@ckeditor/ckeditor5-utils/src/keystrokehandler';
+import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
 
 testUtils.createSinonSandbox();