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

Commit 047c010c authored by Anvesh Renikindi's avatar Anvesh Renikindi
Browse files

Fix LargeTopAppBarNestedScrollConnectionTest for ag/26995613

Bug: 332591722
Change-Id: I631210dc4e07980c0e68c96f4bdba749e8ccdda4
Merged-In: Ib7d69f64cd955c9069c47293810178b5cebe2099
Test: Presubmits
Flag: N/A
parent 400a6e0c
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),
            )
        }
    }
}