Sfoglia il codice sorgente

Fix typo in PendingActions tests.

Maciej Gołaszewski 7 anni fa
parent
commit
747ea76d96
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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 VirtaulTestEditor from './_utils/virtualtesteditor';
+import VirtualTestEditor 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 VirtaulTestEditor.create( {
+		return VirtualTestEditor.create( {
 			plugins: [ PendingActions ],
 		} ).then( newEditor => {
 			editor = newEditor;