Fix checkstyle rule

This commit is contained in:
Stephane Nicoll
2017-04-10 14:20:50 +02:00
parent dbe388756a
commit 6399ed7869

View File

@@ -67,7 +67,7 @@ public class SolrHealthIndicatorTests {
@Test
public void solrIsUp() throws Exception {
SolrClient solrClient = mock(SolrClient.class);
given(solrClient.request(any(CoreAdminRequest.class),isNull()))
given(solrClient.request(any(CoreAdminRequest.class), isNull()))
.willReturn(mockResponse(0));
SolrHealthIndicator healthIndicator = new SolrHealthIndicator(solrClient);
Health health = healthIndicator.health();