Skip to content

Commit

Permalink
Fix checkstyle rule
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Apr 10, 2017
1 parent dbe3887 commit 6399ed7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void indicatorExists() {
@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();
Expand Down

0 comments on commit 6399ed7

Please sign in to comment.