summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2023-11-22 14:45:30 +0100
committercyBerta <cyberta@riseup.net>2023-11-23 09:51:29 +0100
commit9da7c99730c09e9b9164dec2f8cfbd2e4c337a69 (patch)
tree76eef3875c18bd14b364f4aaca31159f5bb5b9be
parentfdcc7ac00be21c22e1bd94df06c304f6a7a765be (diff)
less verbose output for tryResolve()
-rw-r--r--app/src/androidTest/java/utils/CustomInteractions.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/src/androidTest/java/utils/CustomInteractions.java b/app/src/androidTest/java/utils/CustomInteractions.java
index 9e3a8f9d..4890c20c 100644
--- a/app/src/androidTest/java/utils/CustomInteractions.java
+++ b/app/src/androidTest/java/utils/CustomInteractions.java
@@ -30,8 +30,7 @@ public class CustomInteractions {
}
hasFound = true;
} catch (NoMatchingViewException exception) {
- System.out.println("NoMatchingViewException attempt: " + attempt);
- exception.printStackTrace();
+ System.out.println("NoMatchingViewException - attempt: " + attempt + ". " + exception.getLocalizedMessage());
attempt++;
if (attempt == maxTries) {
throw exception;