Selaa lähdekoodia

Code style fixes.

Piotrek Koszuliński 9 vuotta sitten
vanhempi
commit
d6bf67f5e7
1 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. 5 5
      dev/bender/plugins/ckeditor5/static/extensions.js

+ 5 - 5
dev/bender/plugins/ckeditor5/static/extensions.js

@@ -96,8 +96,8 @@
 			// jscs:disable disallowMultipleVarDecl
 
 			var obj = utils.flag( this, 'object' ),
-				actuallyGot = '' ,
-				thrown = false ,
+				actuallyGot = '',
+				thrown = false,
 				thrownError = null,
 				message;
 
@@ -161,9 +161,9 @@
 			}
 
 			this.assert(
-				thrown === true ,
-					'expected #{this} to throw an error' + actuallyGot ,
-					'expected #{this} to not throw an error' + actuallyGot ,
+				thrown === true,
+					'expected #{this} to throw an error' + actuallyGot,
+					'expected #{this} to not throw an error' + actuallyGot,
 					'CKEditorError',
 					( thrownError instanceof Error ? thrownError.toString() : thrownError )
 			);