Change give feedback copy to title case (#1177)

This commit is contained in:
Caleb Derosier 2024-03-27 14:12:10 -06:00 committed by Álison Fernandes
parent 3a7ef240b0
commit 166a39354a
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
<string name="duo_title" translatable="false">Duo</string>
<string name="duo_org_title" translatable="false">Duo (%1$s)</string>
<!-- TODO BIT-2140: Update typeform strings -->
<string name="give_feedback" translatable="false">Give feedback</string>
<string name="continue_to_give_feedback" translatable="false">Continue to Give feedback?</string>
<string name="give_feedback" translatable="false">Give Feedback</string>
<string name="continue_to_give_feedback" translatable="false">Continue to Give Feedback?</string>
<string name="continue_to_provide_feedback" translatable="false">Select continue to provide feedback on your experience in a web form.</string>
</resources>

View file

@ -154,7 +154,7 @@ class OtherScreenTest : BaseComposeTest() {
@Test
fun `on give feedback click should display confirmation dialog and confirm click should emit GiveFeedbackClick`() {
composeTestRule.onNode(isDialog()).assertDoesNotExist()
composeTestRule.onNodeWithText("Give feedback").performClick()
composeTestRule.onNodeWithText("Give Feedback").performClick()
composeTestRule.onNode(isDialog()).assertExists()
composeTestRule
.onAllNodesWithText("Continue")