Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8489fb3 authored by Anvesh Renikindi's avatar Anvesh Renikindi Committed by Android (Google) Code Review
Browse files

Merge "Fix LargeTopAppBarNestedScrollConnectionTest for ag/26995613" into main

parents 9051dd0c 48616990
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -202,11 +202,11 @@ class LargeTopAppBarNestedScrollConnectionTest(testCase: TestCase) {
    companion object {
        @Parameterized.Parameters(name = "{0}")
        @JvmStatic
        fun data(): List<TestCase> =
            listOf(
                TestCase(NestedScrollSource.Drag),
                TestCase(NestedScrollSource.Fling),
                TestCase(NestedScrollSource.Wheel),
        fun data(): List<TestCase> {
            return listOf(
                TestCase(NestedScrollSource.UserInput),
                TestCase(NestedScrollSource.SideEffect),
            )
        }
    }
}