Skip to content
Snippets Groups Projects
Commit eb1def1d authored by gpawel's avatar gpawel
Browse files

fixing broken test after refreshing the indices

SVN: 25916
parent dedcc387
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ public final class HibernateSearchDAOTest extends AbstractDAOTest ...@@ -153,7 +153,7 @@ public final class HibernateSearchDAOTest extends AbstractDAOTest
final List<MatchingEntity> hits = final List<MatchingEntity> hits =
hibernateSearchDAO.searchEntitiesByTerm(SearchableEntity.EXPERIMENT, query, hibernateSearchDAO.searchEntitiesByTerm(SearchableEntity.EXPERIMENT, query,
createDataProvider(), useWildcardMode, 0, Integer.MAX_VALUE); createDataProvider(), useWildcardMode, 0, Integer.MAX_VALUE);
assertEquals(6, hits.size()); assertEquals(7, hits.size());
for (MatchingEntity matchingEntity : hits) for (MatchingEntity matchingEntity : hits)
{ {
AssertionUtil.assertContainsInsensitive(querySubstring, matchingEntity.getCode()); AssertionUtil.assertContainsInsensitive(querySubstring, matchingEntity.getCode());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment