Mute flaky test (#58356)

This commit is contained in:
William Brafford 2020-06-18 15:30:11 -04:00 committed by GitHub
parent 30e777856f
commit b3c99f06d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -104,6 +104,7 @@ public class LongKeyedBucketOrdsTests extends ESTestCase {
}
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/58353")
public void testCollectsFromManyBuckets() {
try (LongKeyedBucketOrds ords = LongKeyedBucketOrds.build(bigArrays, false)) {
// Test a few explicit values
@ -183,7 +184,7 @@ public class LongKeyedBucketOrdsTests extends ESTestCase {
@Override
public String toString() {
return owningBucketOrd + "/" + value;
return owningBucketOrd + "/" + value;
}
@Override
@ -192,7 +193,7 @@ public class LongKeyedBucketOrdsTests extends ESTestCase {
return false;
}
OwningBucketOrdAndValue other = (OwningBucketOrdAndValue) obj;
return owningBucketOrd == other.owningBucketOrd && value == other.value;
return owningBucketOrd == other.owningBucketOrd && value == other.value;
}
@Override