Skip to content

Commit

Permalink
Update test in test/index/TestStemming.java #462
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasNx committed Aug 10, 2023
1 parent a374840 commit ec41d83
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/index/TestStemming.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ public static Collection<Object[]> data() {
{ "_all", "köln", /*->*/ 2 },
{ "_all", "koeln", /*->*/ 2 },
{ "_all", "koln", /*->*/ 2 },
{ "name", "köln", /*->*/ 1 },
{ "name", "koeln", /*->*/ 1 },
{ "name", "koln", /*->*/ 1 },
{ "name", "köln", /*->*/ 2 },
{ "name", "koeln", /*->*/ 2 },
{ "name", "koln", /*->*/ 2 },
{ "alternateName", "köln", /*->*/ 2 },
{ "alternateName", "koeln", /*->*/ 2 },
{ "alternateName", "koln", /*->*/ 2 },
{ "classification.label.de", "Universitätsbibliothek", /*->*/ 8 },
{ "classification.label.de", "Universitaetsbibliothek", /*->*/ 8 },
{ "classification.label.de", "Universitatsbibliothek", /*->*/ 8 },
{ "fundertype.label.de", "Körperschaft", /*->*/ 4 },
{ "fundertype.label.de", "Koerperschaft", /*->*/ 4 },
{ "fundertype.label.de", "Korperschaft", /*->*/ 4 },
{ "classification.label.de", "Universitätsbibliothek", /*->*/ 9 },
{ "classification.label.de", "Universitaetsbibliothek", /*->*/ 9 },
{ "classification.label.de", "Universitatsbibliothek", /*->*/ 9 },
{ "fundertype.label.de", "Körperschaft", /*->*/ 5 },
{ "fundertype.label.de", "Koerperschaft", /*->*/ 5 },
{ "fundertype.label.de", "Korperschaft", /*->*/ 5 },
{ "_all", "straße", /*->*/ 1 },
{ "_all", "strasse", /*->*/ 1 },
{ "name", "Preußischer", /*->*/ 2 },
Expand Down

0 comments on commit ec41d83

Please sign in to comment.