Skip to content
Snippets Groups Projects
Commit 4051eb82 authored by jakubs's avatar jakubs
Browse files

BIS-226 SP-341 fix the test after update of fixtures

SVN: 27572
parent 11febb71
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ public final class VocabularyDAOTest extends AbstractDAOTest
{
final IVocabularyDAO vocabularyDAO = daoFactory.getVocabularyDAO();
final List<VocabularyPE> vocabularies = vocabularyDAO.listVocabularies(true);
assertEquals(3, vocabularies.size());
assertEquals(4, vocabularies.size());
final VocabularyPE vocabularyPE = vocabularies.get(0);
assertFalse(HibernateUtils.isInitialized(vocabularyPE.getTerms()));
}
......@@ -156,7 +156,7 @@ public final class VocabularyDAOTest extends AbstractDAOTest
{
final IVocabularyDAO vocabularyDAO = daoFactory.getVocabularyDAO();
final List<VocabularyPE> vocabularies = vocabularyDAO.listVocabularies(false);
assertEquals(5, vocabularies.size());
assertEquals(6, vocabularies.size());
final VocabularyPE vocabularyPE = vocabularies.get(0);
assertFalse(HibernateUtils.isInitialized(vocabularyPE.getTerms()));
}
......
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