Fix a few flaky instrumentation tests to ensure suite passes.

This commit is contained in:
Alex Hart
2022-11-04 15:59:16 -03:00
committed by Cody Henthorne
parent 513228b366
commit dbbae7f13f
3 changed files with 6 additions and 2 deletions

View File

@@ -291,7 +291,7 @@ class MmsDatabaseTest_stories {
}
@Test
fun givenAGroupStoryWithAReactionFromSelf_whenICheckHasSelfReplyInGroupStory_thenIExpectFalse() {
fun givenAGroupStoryWithAReactionFromSelf_whenICheckHasSelfReplyInGroupStory_thenIExpectTrue() {
// GIVEN
val groupStoryId = MmsHelper.insert(
recipient = myStory,
@@ -312,7 +312,7 @@ class MmsDatabaseTest_stories {
val result = mms.hasGroupReplyOrReactionInStory(groupStoryId)
// THEN
assertFalse(result)
assertTrue(result)
}
@Test