Преглед изворни кода

Correct names of generic normalizer in unit tests.

Mateusz Samsel пре 6 година
родитељ
комит
c1f7b51a04

+ 3 - 3
packages/ckeditor5-paste-from-office/tests/normalizers/genericnormalizer.js

@@ -3,11 +3,11 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
-import GoogleDocsNormalizer from '../../src/normalizers/genericnormalizer';
+import GenericNormalizer from '../../src/normalizers/genericnormalizer';
 
 // `execute()` of the generic normalizer is tested with autogenerated normalization tests.
-describe( 'GoogleDocsNormalizer', () => {
-	const normalizer = new GoogleDocsNormalizer();
+describe( 'GenericNormalizer', () => {
+	const normalizer = new GenericNormalizer();
 
 	describe( 'isActive()', () => {
 		it( 'should return always true ', () => {