浏览代码

Added missing semicolon.

Kamil Piechaczek 8 年之前
父节点
当前提交
6d7aae3a21
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 );