Skip to content

Commit bcfa832

Browse files
find out why reInit fails
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
1 parent 6325d07 commit bcfa832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/androidTest/java/com/nextcloud/client/EndToEndRandomIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ private void useExistingKeys() throws Exception {
526526
GetPublicKeyOperation publicKeyOperation = new GetPublicKeyOperation();
527527
RemoteOperationResult publicKeyResult = publicKeyOperation.execute(account, targetContext);
528528

529-
assertTrue(publicKeyResult.isSuccess());
529+
assertTrue("Result code:" + publicKeyResult.getHttpCode(), publicKeyResult.isSuccess());
530530

531531
String publicKeyFromServer = (String) publicKeyResult.getData().get(0);
532532
arbitraryDataProvider.storeOrUpdateKeyValue(account.name,

0 commit comments

Comments
 (0)