Commit 6399ed78 authored by Stephane Nicoll's avatar Stephane Nicoll

Fix checkstyle rule

parent dbe38875
...@@ -67,7 +67,7 @@ public class SolrHealthIndicatorTests { ...@@ -67,7 +67,7 @@ public class SolrHealthIndicatorTests {
@Test @Test
public void solrIsUp() throws Exception { public void solrIsUp() throws Exception {
SolrClient solrClient = mock(SolrClient.class); SolrClient solrClient = mock(SolrClient.class);
given(solrClient.request(any(CoreAdminRequest.class),isNull())) given(solrClient.request(any(CoreAdminRequest.class), isNull()))
.willReturn(mockResponse(0)); .willReturn(mockResponse(0));
SolrHealthIndicator healthIndicator = new SolrHealthIndicator(solrClient); SolrHealthIndicator healthIndicator = new SolrHealthIndicator(solrClient);
Health health = healthIndicator.health(); Health health = healthIndicator.health();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment