aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2021-10-06 10:55:35 +0200
committerLester Solbakken <lesters@oath.com>2021-10-06 10:55:35 +0200
commit1fdf04b093030529563020ccea7894f24848d2a0 (patch)
treed10ea06058e5b673b8697e76e6ccb4064fafabe4 /searchlib/src/test
parentbcd003d3253a5e51c19149dcc8fa44e8fd526adb (diff)
Remove temporary test case
Diffstat (limited to 'searchlib/src/test')
-rw-r--r--searchlib/src/test/java/com/yahoo/searchlib/rankingexpression/evaluation/EvaluationTestCase.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/searchlib/src/test/java/com/yahoo/searchlib/rankingexpression/evaluation/EvaluationTestCase.java b/searchlib/src/test/java/com/yahoo/searchlib/rankingexpression/evaluation/EvaluationTestCase.java
index ed8a15ad989..10c835b05f2 100644
--- a/searchlib/src/test/java/com/yahoo/searchlib/rankingexpression/evaluation/EvaluationTestCase.java
+++ b/searchlib/src/test/java/com/yahoo/searchlib/rankingexpression/evaluation/EvaluationTestCase.java
@@ -734,14 +734,6 @@ public class EvaluationTestCase {
}
@Test
- public void test() throws ParseException {
- RankingExpression expr = new RankingExpression("expand(tensor<float>(d1[3]):[1,2,3], d0)");
- System.out.println(expr);
- Tensor t = expr.evaluate(new MapContext()).asTensor();
- System.out.println(t);
- }
-
- @Test
public void testProgrammaticBuildingAndPrecedence() {
RankingExpression standardPrecedence = new RankingExpression(new ArithmeticNode(constant(2), ArithmeticOperator.PLUS, new ArithmeticNode(constant(3), ArithmeticOperator.MULTIPLY, constant(4))));
RankingExpression oppositePrecedence = new RankingExpression(new ArithmeticNode(new ArithmeticNode(constant(2), ArithmeticOperator.PLUS, constant(3)), ArithmeticOperator.MULTIPLY, constant(4)));