From 6a2ca2ce8dc2738db503ca699434ccec662f0d7f Mon Sep 17 00:00:00 2001 From: Subhajit Mallick <153619690+subhajitxyz@users.noreply.github.com> Date: Thu, 26 Dec 2024 20:53:24 +0530 Subject: [PATCH] correct indentation --- .../app/player/state/StateFragmentTest.kt | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/app/src/sharedTest/java/org/oppia/android/app/player/state/StateFragmentTest.kt b/app/src/sharedTest/java/org/oppia/android/app/player/state/StateFragmentTest.kt index 9a0865de3b3..763014ef855 100644 --- a/app/src/sharedTest/java/org/oppia/android/app/player/state/StateFragmentTest.kt +++ b/app/src/sharedTest/java/org/oppia/android/app/player/state/StateFragmentTest.kt @@ -5287,16 +5287,17 @@ class StateFragmentTest { scrollToViewType(NEXT_NAVIGATION_BUTTON) onView(withId(R.id.next_state_navigation_button)).perform(click()) - val expectedDescription = """ - "Very good!" said Uncle Berry. He looked at the kitchen table and saw that James had a jug of - orange puree that hadn't been used. - - "Now, James," he said, "I know a good recipe for orange smoothie. It requires mixing orange - puree and milk in the ratio 3:2. Can you tell me which of the following pictures shows a 3:2 - ratio of orange puree to milk?" - - (Note: The orange puree is orange, and the milk is white.) - """.trimIndent() + val expectedDescription = + """ + "Very good!" said Uncle Berry. He looked at the kitchen table and saw that James had a jug + of orange puree that hadn't been used. + + "Now, James," he said, "I know a good recipe for orange smoothie. It requires mixing orange + puree and milk in the ratio 3:2. Can you tell me which of the following pictures shows a 3:2 + ratio of orange puree to milk?" + + (Note: The orange puree is orange, and the milk is white.) + """.trimIndent() onView(withId(R.id.content_text_view)) .check(matches(withText(expectedDescription)))