- $oPhrase = new Phrase(join(' ', array_fill(0, 18, 'a')), '');
- $oPhrase->computeWordSets(new TokensFullSet());
- $this->assertEquals(Phrase::MAX_WORDSETS, count($oPhrase->getWordSets()));
+ $aWords = array_fill(0, 18, 'a');
+ $oPhrase = new Phrase(join(' ', $aWords), '');
+ $oPhrase->computeWordSets($aWords, new TokensFullSet());
+ $this->assertEquals(100, count($oPhrase->getWordSets()));