Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
saleniuk committed Jul 25, 2024
1 parent 44d0249 commit 075212d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class MessageCompositionInputStateHolderTest {
@Test
fun `given non-empty text but with only empty markdown, when composing, then send button should be disabled`() = runTest {
// Given
val messageText = "** **" // just an example, more combinations are tested in StringUtilTest
val messageText = "# " // just an example, more combinations are tested in StringUtilTest
val (state, _) = Arrangement()
.withText(messageText)
.arrange()
Expand Down Expand Up @@ -354,7 +354,7 @@ class MessageCompositionInputStateHolderTest {
fun `given non-empty text bit with only empty markdown, when editing, then send button should be disabled`() = runTest {
// Given
val editMessageText = "edit"
val messageText = "** **" // just an example, more combinations are tested in StringUtilTest
val messageText = "# " // just an example, more combinations are tested in StringUtilTest
val (state, _) = Arrangement()
.withText(messageText)
.arrange()
Expand Down

0 comments on commit 075212d

Please sign in to comment.