Browse Source

Revert "Fix typo in PendingActions tests."

This reverts commit 8cfdec0b
Maciej Gołaszewski 7 năm trước cách đây
mục cha
commit
9815fddea0
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      packages/ckeditor5-core/tests/pendingactions.js

+ 2 - 2
packages/ckeditor5-core/tests/pendingactions.js

@@ -3,7 +3,7 @@
  * For licensing, see LICENSE.md.
  */
 
-import VirtualTestEditor from './_utils/virtualtesteditor';
+import VirtaulTestEditor from './_utils/virtualtesteditor';
 import PendingActions from '../src/pendingactions';
 import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';
 
@@ -11,7 +11,7 @@ let editor, pendingActions;
 
 describe( 'PendingActions', () => {
 	beforeEach( () => {
-		return VirtualTestEditor.create( {
+		return VirtaulTestEditor.create( {
 			plugins: [ PendingActions ],
 		} ).then( newEditor => {
 			editor = newEditor;