Explorar el Código

Added missing semicolon.

Kamil Piechaczek hace 8 años
padre
commit
6d7aae3a21
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-core/tests/_utils-tests/utils.js

+ 1 - 1
packages/ckeditor5-core/tests/_utils-tests/utils.js

@@ -39,7 +39,7 @@ describe( 'utils', () => {
 			const assertionRed = testUtils.sinon.stub().callsFake( () => {
 				expect( 1 ).to.equal( 1 );
 			} );
-			const assertionGreen = testUtils.sinon.stub()
+			const assertionGreen = testUtils.sinon.stub();
 
 			testUtils.checkAssertions( assertionRed, assertionGreen );
 			expect( assertionGreen.called ).to.equal( false );