mirror of https://github.com/apache/lucene.git
SOLR-5488: fix ignore import
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1545054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2e461b4258
commit
fc7a21deea
|
@ -21,10 +21,9 @@ package org.apache.solr.analytics;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import jdk.nashorn.internal.ir.annotations.Ignore;
|
|
||||||
|
|
||||||
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
|
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
@SuppressCodecs({"Lucene3x","Lucene40","Lucene41","Lucene42","Appending","Asserting"})
|
@SuppressCodecs({"Lucene3x","Lucene40","Lucene41","Lucene42","Appending","Asserting"})
|
||||||
|
@ -211,7 +210,7 @@ public class NoFacetTest extends AbstractAnalyticsStatsTest {
|
||||||
assertEquals(doubleResult,doubleTest);
|
assertEquals(doubleResult,doubleTest);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test @Ignore() // See "SOLR-5488"
|
@Test @Ignore("SOLR-5488")
|
||||||
public void stddevTest() throws Exception {
|
public void stddevTest() throws Exception {
|
||||||
//Int
|
//Int
|
||||||
Double intResult = (Double)getStatResult(response, "str", "double", "int_id");
|
Double intResult = (Double)getStatResult(response, "str", "double", "int_id");
|
||||||
|
|
Loading…
Reference in New Issue