NightOwl888 commented on code in PR #781: URL: https://github.com/apache/lucenenet/pull/781#discussion_r1827428466
########## src/Lucene.Net.Tests.Analysis.Common/Analysis/Commongrams/TestCommonGramsFilterFactory.cs: ########## @@ -79,6 +79,24 @@ public virtual void TestDefaults() AssertTokenStreamContents(stream, new string[] { "testing", "testing_the", "the", "the_factory", "factory" }); } + // LUCENENET-specific: backported ignoreCase fix from Lucene 8.10.0 (lucene#188, LUCENE-10008) + [Test] + public void TestIgnoreCase() + { + IResourceLoader loader = new ClasspathResourceLoader(typeof(TestAnalyzers)); Review Comment: This is not the equivalent line in .NET. We should be using `.GetType()` rather than `typeof(TestAnalyzers))`. -- 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. To unsubscribe, e-mail: dev-unsubscr...@lucenenet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org