diff --git a/vendor/vendor-apple/base/src/main/kotlin/com/malinskiy/marathon/apple/listener/AccumulatingTestResultListener.kt b/vendor/vendor-apple/base/src/main/kotlin/com/malinskiy/marathon/apple/listener/AccumulatingTestResultListener.kt index 8cb591a80..d1791c4bc 100644 --- a/vendor/vendor-apple/base/src/main/kotlin/com/malinskiy/marathon/apple/listener/AccumulatingTestResultListener.kt +++ b/vendor/vendor-apple/base/src/main/kotlin/com/malinskiy/marathon/apple/listener/AccumulatingTestResultListener.kt @@ -32,8 +32,11 @@ abstract class AccumulatingTestResultListener(private val expectedTestCount: Int testEnded(test, startTime, endTime) } + /** + * Even though apple provides the timestamps for tests, there is no expectation of these being in sync with local time + */ private fun testEnded(test: Test, startTime: Long, endTime: Long) { - runResult.testEnded(test = test, testMetrics = emptyMap(), endTime = endTime) + runResult.testEnded(test = test, testMetrics = emptyMap()) } override suspend fun testRunFailed(errorMessage: String, reason: DeviceFailureReason) {