mirror of https://github.com/apache/lucene.git
SOLR-8150: Fix build failure due to too much output from QueryResponseTest
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1707813 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29441f2c4e
commit
99c2515d99
|
@ -322,6 +322,8 @@ Other Changes
|
||||||
|
|
||||||
* SOLR-8025: remove unnecessary ResponseBuilder.getQueryCommand() calls (Christine Poerschke)
|
* SOLR-8025: remove unnecessary ResponseBuilder.getQueryCommand() calls (Christine Poerschke)
|
||||||
|
|
||||||
|
* SOLR-8150: Fix build failure due to too much output from QueryResponseTest (janhoy)
|
||||||
|
|
||||||
================== 5.3.1 ==================
|
================== 5.3.1 ==================
|
||||||
|
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
|
|
|
@ -20,6 +20,7 @@ package org.apache.solr.client.solrj.response;
|
||||||
import junit.framework.Assert;
|
import junit.framework.Assert;
|
||||||
|
|
||||||
import org.apache.lucene.util.LuceneTestCase;
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
|
import org.apache.lucene.util.TestRuleLimitSysouts.Limit;
|
||||||
import org.apache.solr.client.solrj.impl.XMLResponseParser;
|
import org.apache.solr.client.solrj.impl.XMLResponseParser;
|
||||||
import org.apache.solr.common.SolrDocumentList;
|
import org.apache.solr.common.SolrDocumentList;
|
||||||
import org.apache.solr.common.util.DateUtil;
|
import org.apache.solr.common.util.DateUtil;
|
||||||
|
@ -38,6 +39,7 @@ import java.util.List;
|
||||||
*
|
*
|
||||||
* @since solr 1.3
|
* @since solr 1.3
|
||||||
*/
|
*/
|
||||||
|
@Limit(bytes=20000)
|
||||||
public class QueryResponseTest extends LuceneTestCase {
|
public class QueryResponseTest extends LuceneTestCase {
|
||||||
@Test
|
@Test
|
||||||
public void testDateFacets() throws Exception {
|
public void testDateFacets() throws Exception {
|
||||||
|
|
Loading…
Reference in New Issue