Skip to content

Commit

Permalink
Added message to testServerTime
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 committed Nov 20, 2023
1 parent 3c15f31 commit 9447a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/androidTest/java/IntegrationTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9447a72

Please sign in to comment.