From d661fa0661fb0e1aa2781d64450b2c1502bd7dc5 Mon Sep 17 00:00:00 2001
From: Torsten Grote <t@grobox.de>
Date: Wed, 5 Oct 2016 18:51:03 -0300
Subject: [PATCH] Fix IntroductionManager unit tests

---
 .../briarproject/introduction/IntroductionManagerImplTest.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/briar-tests/src/org/briarproject/introduction/IntroductionManagerImplTest.java b/briar-tests/src/org/briarproject/introduction/IntroductionManagerImplTest.java
index e6caecad6b..c02c29192b 100644
--- a/briar-tests/src/org/briarproject/introduction/IntroductionManagerImplTest.java
+++ b/briar-tests/src/org/briarproject/introduction/IntroductionManagerImplTest.java
@@ -97,10 +97,12 @@ public class IntroductionManagerImplTest extends BriarTestCase {
 		);
 		metadataBefore = BdfDictionary.of(
 				new BdfEntry(GROUP_KEY_MSG_COUNT, 41L),
+				new BdfEntry(GROUP_KEY_UNREAD_COUNT, 0L),
 				new BdfEntry(GROUP_KEY_LATEST_MSG, 0L)
 		);
 		metadataAfter = BdfDictionary.of(
 				new BdfEntry(GROUP_KEY_MSG_COUNT, 42L),
+				new BdfEntry(GROUP_KEY_UNREAD_COUNT, 0L),
 				new BdfEntry(GROUP_KEY_LATEST_MSG, time)
 		);
 
-- 
GitLab