Test: Disable TRACE logging on aggregations tests.

This commit is contained in:
Adrien Grand 2015-04-03 11:33:30 +02:00
parent ef1f834cf9
commit 523033bce6
3 changed files with 0 additions and 6 deletions

View File

@ -33,7 +33,6 @@ import org.elasticsearch.search.aggregations.metrics.stats.Stats;
import org.elasticsearch.search.aggregations.metrics.stats.extended.ExtendedStats;
import org.elasticsearch.search.aggregations.metrics.sum.Sum;
import org.elasticsearch.test.ElasticsearchIntegrationTest;
import org.elasticsearch.test.junit.annotations.TestLogging;
import org.hamcrest.Matchers;
import org.junit.Test;
@ -66,7 +65,6 @@ import static org.hamcrest.core.IsNull.notNullValue;
*
*/
@ElasticsearchIntegrationTest.SuiteScopeTest
@TestLogging("org.elasticsearch.action.search:TRACE,org.elasticsearch.search:TRACE")
public class DoubleTermsTests extends AbstractTermsTests {
private static final int NUM_DOCS = 5; // TODO: randomize the size?

View File

@ -32,7 +32,6 @@ import org.elasticsearch.search.aggregations.metrics.stats.Stats;
import org.elasticsearch.search.aggregations.metrics.stats.extended.ExtendedStats;
import org.elasticsearch.search.aggregations.metrics.sum.Sum;
import org.elasticsearch.test.ElasticsearchIntegrationTest;
import org.elasticsearch.test.junit.annotations.TestLogging;
import org.hamcrest.Matchers;
import org.junit.Test;
@ -64,7 +63,6 @@ import static org.hamcrest.core.IsNull.notNullValue;
*
*/
@ElasticsearchIntegrationTest.SuiteScopeTest
@TestLogging("org.elasticsearch.action.search:TRACE,org.elasticsearch.search:TRACE")
public class LongTermsTests extends AbstractTermsTests {
private static final int NUM_DOCS = 5; // TODO randomize the size?

View File

@ -37,7 +37,6 @@ import org.elasticsearch.search.aggregations.metrics.stats.extended.ExtendedStat
import org.elasticsearch.search.aggregations.metrics.sum.Sum;
import org.elasticsearch.search.aggregations.metrics.valuecount.ValueCount;
import org.elasticsearch.test.ElasticsearchIntegrationTest;
import org.elasticsearch.test.junit.annotations.TestLogging;
import org.hamcrest.Matchers;
import org.junit.Test;
@ -73,7 +72,6 @@ import static org.hamcrest.core.IsNull.nullValue;
*
*/
@ElasticsearchIntegrationTest.SuiteScopeTest
@TestLogging("org.elasticsearch.action.search:TRACE,org.elasticsearch.search:TRACE")
public class StringTermsTests extends AbstractTermsTests {
private static final String SINGLE_VALUED_FIELD_NAME = "s_value";