donnerpeter commented on a change in pull request #2405: URL: https://github.com/apache/lucene-solr/pull/2405#discussion_r579416054
########## File path: lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/TestAllDictionaries.java ########## @@ -160,7 +160,8 @@ public void testDictionariesLoadSuccessfully() throws Exception { try { Dictionary dic = loadDictionary(aff); totalMemory.addAndGet(RamUsageTester.sizeOf(dic)); - totalWords.addAndGet(RamUsageTester.sizeOf(dic.words)); + totalWords.addAndGet( + RamUsageTester.sizeOf(dic.words) + RamUsageTester.sizeOf(dic.wordHashes)); Review comment: Yes, that's from wooorm and LibreOffice dictionaries ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org