mirror of https://github.com/apache/lucene.git
toString for FuzzyQuery puts boost at the end, which looks more sensible
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@329383 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4fc1272877
commit
c522c62b36
|
@ -255,8 +255,8 @@ public class TestQueryParser extends TestCase {
|
|||
assertQueryEquals("term*^2", null, "term*^2.0");
|
||||
assertQueryEquals("term~", null, "term~0.5");
|
||||
assertQueryEquals("term~0.7", null, "term~0.7");
|
||||
assertQueryEquals("term~^2", null, "term^2.0~0.5");
|
||||
assertQueryEquals("term^2~", null, "term^2.0~0.5");
|
||||
assertQueryEquals("term~^2", null, "term~0.5^2.0");
|
||||
assertQueryEquals("term^2~", null, "term~0.5^2.0");
|
||||
assertQueryEquals("term*germ", null, "term*germ");
|
||||
assertQueryEquals("term*germ^3", null, "term*germ^3.0");
|
||||
|
||||
|
|
Loading…
Reference in New Issue