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

Commit d21bcba5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix nullability for Kotlin 2.1" into main

parents 3ca51a1e a2aee2f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ class GroupedTaskInfoTest : ShellTestCase() {
        assertThat(taskInfoFromParcel.taskInfoList).hasSize(3)
        // Only compare task ids
        val taskIdComparator = Correspondence.transforming<TaskInfo, Int>(
            { it?.taskId }, "has taskId of"
            { it.taskId }, "has taskId of"
        )
        assertThat(taskInfoFromParcel.taskInfoList).comparingElementsUsing(taskIdComparator)
            .containsExactly(1, 2, 3).inOrder()