File tree Expand file tree Collapse file tree
androidTest/java/com/nextcloud/client
main/java/com/owncloud/android/ui/fragment Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ class ActivitiesFragmentIT : AbstractIT() {
6868 launchActivitiesActivity().use { scenario ->
6969 val fragment = scenario.getFragment() ? : return
7070 scenario.onActivity {
71- fragment.binding.emptyList.root.visibility = View .GONE
72- fragment.binding.swipeContainingList.visibility = View .GONE
73- fragment.binding.loadingContent.visibility = View .VISIBLE
71+ fragment.binding? .emptyList? .root? .visibility = View .GONE
72+ fragment.binding? .swipeContainingList? .visibility = View .GONE
73+ fragment.binding? .loadingContent? .visibility = View .VISIBLE
7474 }
7575 val screenShotName = createName(" ${testClassName} _loading" , " " )
7676 onView(isRoot()).check(matches(isDisplayed()))
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ActivitiesFragment :
6060 @Inject
6161 lateinit var userAccountManager: UserAccountManager
6262
63- private var binding: FragmentActivitiesBinding ? = null
63+ var binding: FragmentActivitiesBinding ? = null
6464
6565 private var adapter: ActivityListAdapter ? = null
6666 private var lastGiven: Long = 0
You can’t perform that action at this time.
0 commit comments