Merge pull request #2474 from CHOIJAEHONG1/support-alphanumeric-dimensional-sort-in-gropu-by

delete System.out.println() in test code (#2474)
This commit is contained in:
Navis Ryu 2016-02-16 22:35:22 +09:00
commit e60fc1b7f1
2 changed files with 1 additions and 3 deletions

View File

@ -1671,7 +1671,7 @@ public class GroupByQueryRunnerTest
.setDimensions(
Lists.<DimensionSpec>newArrayList(
new ExtractionDimensionSpec(
"quality", "alias", new LookupExtractionFn(new MapLookupExtractor(map), false, null, false, false), null
"quality", "alias", new LookupExtractionFn(new MapLookupExtractor(map, false), false, null, false, false), null
)
)
)

View File

@ -72,8 +72,6 @@ public class GroupByQueryTest
String json = jsonMapper.writeValueAsString(query);
Query serdeQuery = jsonMapper.readValue(json, Query.class);
System.out.println(json);
Assert.assertEquals(query, serdeQuery);
}