Skip to content

Commit ab27433

Browse files
verbose
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
1 parent 406eb8a commit ab27433

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/garm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
uses: reactivecircus/android-emulator-runner@b530d96654c385303d652368551fb075bc2f0b6b # v2.35.0
8383
with:
8484
api-level: ${{ matrix.api-level }}
85+
cmake: 4.1.2
8586
force-avd-creation: false
8687
arch: x86_64
8788
sdcard-path-or-size: 100M

app/src/androidTest/java/com/nextcloud/client/FileDisplayActivityIT.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,11 @@ class FileDisplayActivityIT : AbstractOnServerIT() {
220220
launchActivity<FileDisplayActivity>().use { scenario ->
221221
scenario.onActivity { sut ->
222222
onIdleSync {
223-
assertTrue(
224-
CreateFolderOperation("/test/", user, targetContext, storageManager)
225-
.execute(client)
226-
.isSuccess
227-
)
223+
val test = CreateFolderOperation("/test/", user, targetContext, storageManager)
224+
.execute(client)
225+
226+
assertTrue(test.exception.message, test.isSuccess)
227+
228228
onView(withId(R.id.switch_grid_view_button)).perform(click())
229229
}
230230
}

0 commit comments

Comments
 (0)