Browse Source

[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.
Ke Li 7 years ago
parent
commit
55448b2630

+ 6 - 6
server/src/test/java/org/elasticsearch/index/shard/IndexShardTests.java

@@ -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);

+ 1 - 3
server/src/test/java/org/elasticsearch/search/aggregations/bucket/GeoDistanceIT.java

@@ -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")