[Tests] Remove unnecessary condition check (#28559)
The condition value in question is true, regardless of the randomBoolean() value. This change simplifies this removing the condition blocks.
This commit is contained in:
parent
4aece92b2c
commit
55448b2630
|
@ -1146,12 +1146,12 @@ public class IndexShardTests extends IndexShardTestCase {
|
|||
assertEquals(shard.shardPath().getRootStatePath().toString(), stats.getStatePath());
|
||||
assertEquals(shard.shardPath().isCustomDataPath(), stats.isCustomDataPath());
|
||||
|
||||
if (randomBoolean() || true) { // try to serialize it to ensure values survive the serialization
|
||||
BytesStreamOutput out = new BytesStreamOutput();
|
||||
stats.writeTo(out);
|
||||
StreamInput in = out.bytes().streamInput();
|
||||
stats = ShardStats.readShardStats(in);
|
||||
}
|
||||
// try to serialize it to ensure values survive the serialization
|
||||
BytesStreamOutput out = new BytesStreamOutput();
|
||||
stats.writeTo(out);
|
||||
StreamInput in = out.bytes().streamInput();
|
||||
stats = ShardStats.readShardStats(in);
|
||||
|
||||
XContentBuilder builder = jsonBuilder();
|
||||
builder.startObject();
|
||||
stats.toXContent(builder, EMPTY_PARAMS);
|
||||
|
|
|
@ -121,9 +121,7 @@ public class GeoDistanceIT extends ESIntegTestCase {
|
|||
|
||||
// random cities with no location
|
||||
for (String cityName : Arrays.asList("london", "singapour", "tokyo", "milan")) {
|
||||
if (randomBoolean() || true) {
|
||||
cities.add(indexCity("idx-multi", cityName));
|
||||
}
|
||||
cities.add(indexCity("idx-multi", cityName));
|
||||
}
|
||||
indexRandom(true, cities);
|
||||
prepareCreate("empty_bucket_idx")
|
||||
|
|
Loading…
Reference in New Issue