Make category searching case insensitive. Only works for ASCII :(

This commit is contained in:
Peter Serwylo
2016-11-01 00:24:10 +11:00
parent 25d2659b93
commit f4c03c6baa
3 changed files with 12 additions and 2 deletions

View File

@@ -82,6 +82,13 @@ public class CategoryProviderTest extends FDroidProviderTest {
"com.chicken",
});
assertPackagesInCategory("animal", new String[] {
"com.dog",
"com.cat",
"com.crow",
"com.chicken",
});
assertPackagesInCategory("Bird", new String[]{
"com.crow",
"com.chicken",