From 0a49333d1c6af8fc0d9dcf6375258fed0d2442b2 Mon Sep 17 00:00:00 2001 From: Strata Build Date: Wed, 20 Mar 2024 21:55:15 +0100 Subject: [PATCH] tidy --- .../src/test/org/apache/solr/cloud/TestShardsInfoResponse.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solr/core/src/test/org/apache/solr/cloud/TestShardsInfoResponse.java b/solr/core/src/test/org/apache/solr/cloud/TestShardsInfoResponse.java index 28ea707c7ca..b318d23d21a 100644 --- a/solr/core/src/test/org/apache/solr/cloud/TestShardsInfoResponse.java +++ b/solr/core/src/test/org/apache/solr/cloud/TestShardsInfoResponse.java @@ -81,7 +81,8 @@ public void searchingWithShardsInfoMustNotReturnEmptyOrDuplicateKeys() throws Ex keys.add(shardsInfo.getName(1)); keys.add(shardsInfo.getName(2)); - // The names of the shards in error are generated as unknown_shard_1 and unknown_shard_2 because we could not get the real shard names. + // The names of the shards in error are generated as unknown_shard_1 and unknown_shard_2 because + // we could not get the real shard names. MatcherAssert.assertThat( (Iterable) keys, hasItems("unknown_shard_1", "unknown_shard_2")); }