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

Commit 5608f5a8 authored by Anvesh Renikindi's avatar Anvesh Renikindi Committed by Gerrit Code Review
Browse files

Merge "Fix LargeTopAppBarNestedScrollConnectionTest for ag/26995613" into main

parents cfd36ae7 047c010c
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -201,11 +201,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),
            )
        }
    }
}