Browse Source

Tests: Used nested objects instead of short strings.

Kamil Piechaczek 8 years ago
parent
commit
c3be53ad45
1 changed files with 4 additions and 2 deletions
  1. 4 2
      packages/ckeditor5-core/tests/editor/editor.js

+ 4 - 2
packages/ckeditor5-core/tests/editor/editor.js

@@ -69,8 +69,10 @@ describe( 'Editor', () => {
 		it( 'should extend an editor configuration using built in config', () => {
 			Editor.build = {
 				config: {
-					'foo.a': 1,
-					'foo.b': 2
+					foo: {
+						a: 1,
+						b: 2
+					}
 				}
 			};