From fd86bb30161b6e8da6422b385288cd408eb2f61c Mon Sep 17 00:00:00 2001 From: JanFidor Date: Fri, 11 Nov 2022 22:54:36 +0100 Subject: [PATCH] update ForYouRobot setContent parameter name --- .../samples/apps/nowinandroid/feature/foryou/ForYouRobot.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feature/foryou/src/androidTest/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouRobot.kt b/feature/foryou/src/androidTest/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouRobot.kt index 02d113389..79a1888b2 100644 --- a/feature/foryou/src/androidTest/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouRobot.kt +++ b/feature/foryou/src/androidTest/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouRobot.kt @@ -45,14 +45,14 @@ internal class ForYouRobot( fun setContent( isSyncing: Boolean, - interestsSelectionState: ForYouInterestsSelectionUiState, + onboardingState: OnboardingUiState, feedState: NewsFeedUiState, ) { composeTestRule.setContent { BoxWithConstraints { ForYouScreen( isSyncing = isSyncing, - interestsSelectionState = interestsSelectionState, + onboardingUiState = onboardingState, feedState = feedState, onTopicCheckedChanged = { _, _ -> }, onAuthorCheckedChanged = { _, _ -> },