From ed3418966b67ea197763a2be021ab4a2231ce5f3 Mon Sep 17 00:00:00 2001 From: Anton Malinskiy Date: Fri, 23 Aug 2024 19:48:39 +1000 Subject: [PATCH] fix(ios): add comment --- .../marathon/apple/listener/AccumulatingTestResultListener.kt | 3 +++ 1 file changed, 3 insertions(+) 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 a8ea602e4..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,6 +32,9 @@ 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()) }