Fixing text search where a word starting with lower case was

not being matched

Bug: 32249413
Change-Id: I0f5e24052759a734fe0df3bd3d0bf2e7ef7f2713
This commit is contained in:
Sunny Goyal
2016-10-19 07:53:43 +01:00
parent a833b6d720
commit 28a64381b6
2 changed files with 5 additions and 1 deletions

View File

@@ -67,6 +67,10 @@ public class DefaultAppSearchAlgorithmTest extends InstrumentationTestCase {
assertTrue(mAlgorithm.matches(getInfo("Q"), "q"));
assertTrue(mAlgorithm.matches(getInfo(" Q"), "q"));
// match lower case words
assertTrue(mAlgorithm.matches(getInfo("elephant"), "e"));
}
private AppInfo getInfo(String title) {