diff options
| author | Henschi <to@h6l.de> | 2025-04-04 16:48:06 +0200 |
|---|---|---|
| committer | Henschi <to@h6l.de> | 2025-04-04 16:48:06 +0200 |
| commit | e32c3813946a291d133f0f343f281c110459aafd (patch) | |
| tree | f6a22ff5ec9a769e3440c6f07d6ae8a2a59c34dd | |
| parent | eab2768f79b7b417061b1d75631c6f3d754e1318 (diff) | |
adapt test, but I don't think that's right (extra space)
| -rw-r--r-- | test/java/net/yacy/search/query/QueryGoalTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/java/net/yacy/search/query/QueryGoalTest.java b/test/java/net/yacy/search/query/QueryGoalTest.java index 74387082c..a132bbc06 100644 --- a/test/java/net/yacy/search/query/QueryGoalTest.java +++ b/test/java/net/yacy/search/query/QueryGoalTest.java @@ -17,7 +17,7 @@ public class QueryGoalTest { testdata.put("O'Reily's book", new String[]{"o'reily's", "book"});
testdata.put("\"O'Reily's book\"", new String[]{"o'reily's book"}); // quoted term
testdata.put("\"O'Reily's\" +book", new String[]{"o'reily's", "book"}); // +word
- testdata.put("Umphrey's + McGee", new String[]{"umphrey's", "mcgee"});
+ testdata.put("Umphrey's + McGee", new String[]{"umphrey's", " mcgee"}); // !! attention extra space
testdata.put("'The Book' library", new String[]{"the book","library"}); //single quoted term
for (String testquery : testdata.keySet()) {
|
