Browse Source

missing dot in $avg -> $.avg - fixing CI

pull/167/head
Matthew J Greenwood 9 years ago
parent
commit
b0ec61f7a1
  1. 2
      json-path/src/test/java/com/jayway/jsonpath/internal/function/NestedFunctionTest.java

2
json-path/src/test/java/com/jayway/jsonpath/internal/function/NestedFunctionTest.java

@ -29,7 +29,7 @@ public class NestedFunctionTest extends BaseFunctionTest {
@Test
public void testParameterAverageFunctionCall() {
verifyMathFunction(conf, "$avg({$.numbers.min()}, {$.numbers.max()})", 5.5);
verifyMathFunction(conf, "$.avg({$.numbers.min()}, {$.numbers.max()})", 5.5);
}
@Test

Loading…
Cancel
Save