From 4a7e39e8d402b6b9e51b4c2bfe5963c96c2d1205 Mon Sep 17 00:00:00 2001 From: Jacob Persson <7156+typfel@users.noreply.github.com> Date: Thu, 12 Oct 2023 13:51:17 +0200 Subject: [PATCH] chore: bump android-emulator-runner --- .github/workflows/gradle-android-instrumented-tests.yml | 2 +- .../com/wire/kalium/cryptography/BaseProteusClientTest.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-android-instrumented-tests.yml b/.github/workflows/gradle-android-instrumented-tests.yml index 31814087fc5..82c4b384790 100644 --- a/.github/workflows/gradle-android-instrumented-tests.yml +++ b/.github/workflows/gradle-android-instrumented-tests.yml @@ -69,7 +69,7 @@ jobs: # script: echo "Generated AVD snapshot for caching." - name: Android Instrumentation Tests - uses: reactivecircus/android-emulator-runner@v2.27.0 + uses: reactivecircus/android-emulator-runner@v2.28.0 with: api-level: ${{ matrix.api-level }} target: google_apis diff --git a/cryptography/src/androidInstrumentedTest/kotlin/com/wire/kalium/cryptography/BaseProteusClientTest.kt b/cryptography/src/androidInstrumentedTest/kotlin/com/wire/kalium/cryptography/BaseProteusClientTest.kt index c3470220de3..2bf09d3696e 100644 --- a/cryptography/src/androidInstrumentedTest/kotlin/com/wire/kalium/cryptography/BaseProteusClientTest.kt +++ b/cryptography/src/androidInstrumentedTest/kotlin/com/wire/kalium/cryptography/BaseProteusClientTest.kt @@ -33,7 +33,7 @@ actual open class BaseProteusClientTest { actual suspend fun createProteusClient(proteusStore: ProteusStoreRef, databaseKey: ProteusDBSecret?): ProteusClient { return databaseKey?.let { - coreCryptoCentral(proteusStore.value, it.value).proteusClient() + coreCryptoCentral(proteusStore.value, "secret").proteusClient() } ?: cryptoboxProteusClient(proteusStore.value, testCoroutineScheduler, testCoroutineScheduler) } }