This is an automated email from the ASF dual-hosted git repository.
cpoerschke pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 26cee54 SOLR-15687: UpdateLogCloudTest.implTest numUpdates assert to
log updates on failure
26cee54 is described below
commit 26cee545d1244e8b1adf38a8a8f6432f10573be3
Author: Christine Poerschke <[email protected]>
AuthorDate: Tue Oct 19 15:17:08 2021 +0100
SOLR-15687: UpdateLogCloudTest.implTest numUpdates assert to log updates on
failure
---
.../src/test/org/apache/solr/handler/component/UpdateLogCloudTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/solr/core/src/test/org/apache/solr/handler/component/UpdateLogCloudTest.java
b/solr/core/src/test/org/apache/solr/handler/component/UpdateLogCloudTest.java
index 9868657..278f6b3 100644
---
a/solr/core/src/test/org/apache/solr/handler/component/UpdateLogCloudTest.java
+++
b/solr/core/src/test/org/apache/solr/handler/component/UpdateLogCloudTest.java
@@ -122,7 +122,7 @@ public class UpdateLogCloudTest extends SolrCloudTestCase {
final QueryRequest reqU = new QueryRequest(params("qt","/get",
"getUpdates", minVersion + "..."+maxVersion, "skipDbq",
Boolean.toString(skipDbq)));
final NamedList<?> rspU = solrClient.request(reqU, COLLECTION);
final List<?> updatesList = (List<?>)rspU.get("updates");
- assertEquals(numExpected + (skipDbq ? 1 : 0), updatesList.size());
+ assertEquals(updatesList.toString(), numExpected + (skipDbq ? 1 : 0),
updatesList.size());
}
}