summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Elliot Sisteron <elliotsisteron@google.com> 2023-12-01 11:01:02 +0000
committer Elliot Sisteron <elliotsisteron@google.com> 2023-12-01 11:01:06 +0000
commit524790fbf0b74e503e35ddceaf6b28748471edab (patch)
tree676694f87b9b3ccd983cd35aee597120273fbe64
parent164d051449356254696cad7dcd598bbf4929f580 (diff)
Enforce SigningInfo to be non-nullable.
Looks like the build is failing on a branch due to this type being nullable. Bug: 314213681 Change-Id: I2a8dc8000fdae1e64be54cb0f2703ec7cf378d56 Test: atest CtsSafetyCenterTestCases Relnote: N/A
-rw-r--r--tests/utils/safetycenter/java/com/android/safetycenter/testing/SafetyCenterTestConfigs.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils/safetycenter/java/com/android/safetycenter/testing/SafetyCenterTestConfigs.kt b/tests/utils/safetycenter/java/com/android/safetycenter/testing/SafetyCenterTestConfigs.kt
index fea9b45cc..60c3b4d6a 100644
--- a/tests/utils/safetycenter/java/com/android/safetycenter/testing/SafetyCenterTestConfigs.kt
+++ b/tests/utils/safetycenter/java/com/android/safetycenter/testing/SafetyCenterTestConfigs.kt
@@ -49,7 +49,7 @@ class SafetyCenterTestConfigs(private val context: Context) {
context.packageName,
PackageInfoFlags.of(GET_SIGNING_CERTIFICATES.toLong())
)
- .signingInfo
+ .signingInfo!!
.apkContentsSigners[0]
.toByteArray()
)