Fix IntroductionManager unit tests

This commit is contained in:
Torsten Grote
2016-10-05 18:51:03 -03:00
parent e2eda8fef0
commit d661fa0661

View File

@@ -97,10 +97,12 @@ public class IntroductionManagerImplTest extends BriarTestCase {
); );
metadataBefore = BdfDictionary.of( metadataBefore = BdfDictionary.of(
new BdfEntry(GROUP_KEY_MSG_COUNT, 41L), new BdfEntry(GROUP_KEY_MSG_COUNT, 41L),
new BdfEntry(GROUP_KEY_UNREAD_COUNT, 0L),
new BdfEntry(GROUP_KEY_LATEST_MSG, 0L) new BdfEntry(GROUP_KEY_LATEST_MSG, 0L)
); );
metadataAfter = BdfDictionary.of( metadataAfter = BdfDictionary.of(
new BdfEntry(GROUP_KEY_MSG_COUNT, 42L), new BdfEntry(GROUP_KEY_MSG_COUNT, 42L),
new BdfEntry(GROUP_KEY_UNREAD_COUNT, 0L),
new BdfEntry(GROUP_KEY_LATEST_MSG, time) new BdfEntry(GROUP_KEY_LATEST_MSG, time)
); );