Fix actual vs expected parameter in AppOpDefinitionTest Bug: 333805867 Change-Id: I3181f9ca974e8f4a7bc19700d13a6d83a6505cfe Test: atest AppOpDefinitionTest
diff --git a/tests/tests/appop/src/android/app/appops/cts/AppOpDefinitionTest.kt b/tests/tests/appop/src/android/app/appops/cts/AppOpDefinitionTest.kt index 0184aa1..c5d6381 100644 --- a/tests/tests/appop/src/android/app/appops/cts/AppOpDefinitionTest.kt +++ b/tests/tests/appop/src/android/app/appops/cts/AppOpDefinitionTest.kt
@@ -65,7 +65,7 @@ for ((opName, opCode) in APP_OPS) { Truth.assertThat(frameworkOpNames).contains(opName) Truth.assertWithMessage("Op mismatch, appop : $opName, $opCode") - .that(opCode).isEqualTo(AppOpsManager.strOpToOp(opName)) + .that(AppOpsManager.strOpToOp(opName)).isEqualTo(opCode) } }