Skip to content

Commit

Permalink
BAEL-345: SolrJ (eugenp#1263)
Browse files Browse the repository at this point in the history
* BAEL-278: Updated README.md

* BAEL-554: Add and update README.md files

* BAEL-345: fixed assertion

* BAEL-109: Updated README.md
  • Loading branch information
KevinGilmore authored Mar 2, 2017
1 parent e302aaa commit 5421a35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void whenAdd_thenVerifyAddedByQueryOnId() throws SolrServerException, IOE
response = solrJavaIntegration.getSolrClient().query(query);

SolrDocumentList docList = response.getResults();
assertEquals(docList.getNumFound(), 1);
assertEquals(1, docList.getNumFound());

for (SolrDocument doc : docList) {
assertEquals("Kenmore Dishwasher", (String) doc.getFieldValue("name"));
Expand Down
1 change: 1 addition & 0 deletions spring-data-rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ To view the running application, visit [http://localhost:8080](http://localhost:

###Relevant Articles:
- [Guide to Spring Data REST Validators](http://www.baeldung.com/spring-data-rest-validators)
- [Working with Relationships in Spring Data REST](http://www.baeldung.com/spring-data-rest-relationships)

0 comments on commit 5421a35

Please sign in to comment.