Skip to content

Commit 13b3777

Browse files
committed
Unmute tests (and delete unused variable)
1 parent 6263f44 commit 13b3777

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

server/src/test/java/org/elasticsearch/index/mapper/RangeFieldTypeTests.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,10 @@
5151
public class RangeFieldTypeTests extends FieldTypeTestCase {
5252
RangeType type;
5353
protected static int DISTANCE = 10;
54-
private static long nowInMillis;
5554

5655
@Before
5756
public void setupProperties() {
5857
type = randomFrom(RangeType.values());
59-
nowInMillis = randomNonNegativeLong();
6058
}
6159

6260
private RangeFieldType createDefaultFieldType() {
@@ -89,7 +87,6 @@ public void testRangeQuery() throws Exception {
8987
/**
9088
* test the queries are correct if from/to are adjacent and the range is exclusive of those values
9189
*/
92-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/86284")
9390
public void testRangeQueryIntersectsAdjacentValues() throws Exception {
9491
SearchExecutionContext context = createContext();
9592
ShapeRelation relation = randomFrom(ShapeRelation.values());
@@ -143,7 +140,6 @@ public void testRangeQueryIntersectsAdjacentValues() throws Exception {
143140
/**
144141
* check that we catch cases where the user specifies larger "from" than "to" value, not counting the include upper/lower settings
145142
*/
146-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/86284")
147143
public void testFromLargerToErrors() throws Exception {
148144
SearchExecutionContext context = createContext();
149145
RangeFieldType ft = createDefaultFieldType();

0 commit comments

Comments
 (0)