From e0663b50666cf6c8f83a9752d7b99dfef208ed20 Mon Sep 17 00:00:00 2001 From: David Chan Date: Wed, 28 Aug 2013 11:51:52 -0700 Subject: [PATCH] Fix typo (was comma instead of semicolon) modules/unicodejs/test/unicodejs.wordbreak.test.js * fix typo Change-Id: Ieef78b4f51054b760217c8e2f12a4510857ee88a --- modules/unicodejs/test/unicodejs.wordbreak.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/unicodejs/test/unicodejs.wordbreak.test.js b/modules/unicodejs/test/unicodejs.wordbreak.test.js index bb6696a50b..bc9dc49181 100644 --- a/modules/unicodejs/test/unicodejs.wordbreak.test.js +++ b/modules/unicodejs/test/unicodejs.wordbreak.test.js @@ -39,7 +39,7 @@ QUnit.test( 'isBreak', function ( assert ) { pos += unicodeJS.graphemebreak.splitClusters( broken[i] ).length; breakOffsets.push( pos ); } - textString = new unicodeJS.TextString( broken.join( '' ) ), + textString = new unicodeJS.TextString( broken.join( '' ) ); QUnit.expect( textString.getLength() + 1 );