From 9a8d2d15d97dc17d8f33b7d45b0fefc1267b57c4 Mon Sep 17 00:00:00 2001
From: Mark Haines <mjark@negativecurvature.net>
Date: Thu, 20 Oct 2016 11:51:56 +0100
Subject: [PATCH] Check the message index in the tests

---
 tests/test_group_session.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/test_group_session.cpp b/tests/test_group_session.cpp
index b15875c..df46f0e 100644
--- a/tests/test_group_session.cpp
+++ b/tests/test_group_session.cpp
@@ -166,6 +166,7 @@ int main() {
                             plaintext_buf, size, &message_index);
     assert_equals(plaintext_length, res);
     assert_equals(plaintext, plaintext_buf, res);
+    assert_equals(message_index, uint32_t(0));
 }
 
 {
@@ -213,6 +214,7 @@ int main() {
     res = olm_group_decrypt(
         inbound_session, msgcopy, msglen, plaintext_buf, size, &message_index
     );
+    assert_equals(message_index, uint32_t(0));
     assert_equals(plaintext_length, res);
     assert_equals(plaintext, plaintext_buf, res);
 
-- 
GitLab