Fix broken test (#210)

This commit is contained in:
Andrew Haisting 2023-11-06 09:58:08 -06:00 committed by Álison Fernandes
parent 923380a4f6
commit 0d702443e8

View file

@ -35,7 +35,7 @@ class SendScreenTest : BaseComposeTest() {
@Test
fun `on add item FAB click should send AddItemClick`() {
composeTestRule
.onNodeWithContentDescription("Add Item")
.onNodeWithContentDescription("Add item")
.performClick()
verify { viewModel.trySendAction(SendAction.AddSendClick) }
}