diff --git a/library/src/androidTest/java/IntegrationTests.kt b/library/src/androidTest/java/IntegrationTests.kt index 3dd613c..b2b7bc2 100644 --- a/library/src/androidTest/java/IntegrationTests.kt +++ b/library/src/androidTest/java/IntegrationTests.kt @@ -92,7 +92,7 @@ class IntegrationTests { val secDiff = kotlin.math.abs(date.toEpochSecond() - ZonedDateTime.now().toEpochSecond()) // if the difference between the server and the device is more than 20 seconds, there is something wrong with the server // or there is a bug. Both cases needs a fix - Assert.assertTrue(secDiff < 20) + Assert.assertTrue("Difference is $secDiff seconds", secDiff < 20) } // 1FA test are temporally disabled