Fix typo (was comma instead of semicolon)

modules/unicodejs/test/unicodejs.wordbreak.test.js
* fix typo

Change-Id: Ieef78b4f51054b760217c8e2f12a4510857ee88a
This commit is contained in:
David Chan 2013-08-28 11:51:52 -07:00
parent 3ec8e32a1a
commit e0663b5066

View file

@ -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 );