diff --git a/protocol/communities_messenger_test.go b/protocol/communities_messenger_test.go index 4ef0eaec8..fe75eca8a 100644 --- a/protocol/communities_messenger_test.go +++ b/protocol/communities_messenger_test.go @@ -212,7 +212,7 @@ func (s *MessengerCommunitiesSuite) TestJoinCommunity() { s.Require().NoError(err) s.Require().NotNil(response) s.Require().Len(response.Communities(), 1) - //s.Require().Len(response.Chats(), 1) + s.Require().Len(response.Chats(), 1) createdChat := response.Chats()[0] s.Require().Equal(community.IDString(), createdChat.CommunityID) @@ -342,10 +342,10 @@ func (s *MessengerCommunitiesSuite) TestJoinCommunity() { s.Require().NoError(err) s.Require().Len(communities, 2) s.Require().Len(response.Communities(), 1) - //s.Require().Len(response.Chats(), 1) + s.Require().Len(response.Chats(), 1) // The chat should be created - createdChat = response.Chats()[1] + createdChat = response.Chats()[0] s.Require().Equal(community.IDString(), createdChat.CommunityID) s.Require().Equal(orgChat.Identity.DisplayName, createdChat.Name) s.Require().Equal(orgChat.Identity.Emoji, createdChat.Emoji)