aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/ca/allanwang
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-10-19 22:38:45 -0700
committerGitHub <noreply@github.com>2019-10-19 22:38:45 -0700
commitcd068b144ef533bccafc20b8b25ff72b56a93e23 (patch)
treef1136e879ef1e92b7f0390c23ea52f34a8e96e1e /core/src/test/kotlin/ca/allanwang
parent8d42b8ec4049b62424ec3ea9cd80487409e381d9 (diff)
parent7007e61879bf33c09115b5d8bc16f27af2731045 (diff)
downloadkau-cd068b144ef533bccafc20b8b25ff72b56a93e23.tar.gz
kau-cd068b144ef533bccafc20b8b25ff72b56a93e23.tar.bz2
kau-cd068b144ef533bccafc20b8b25ff72b56a93e23.zip
Merge pull request #233 from AllanWang/kotlin-math
Convert java math to kotlin math
Diffstat (limited to 'core/src/test/kotlin/ca/allanwang')
-rw-r--r--core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt b/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
index 6b99b14..8b99f3c 100644
--- a/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
+++ b/core/src/test/kotlin/ca/allanwang/kau/ui/ProgressAnimatorTest.kt
@@ -16,6 +16,7 @@
package ca.allanwang.kau.ui
import org.junit.Test
+import kotlin.math.min
import kotlin.test.assertEquals
import kotlin.test.assertFalse
import kotlin.test.assertTrue
@@ -67,7 +68,7 @@ class ProgressAnimatorTest {
i > 0.5f
}
withAnimator {
- assertEquals(Math.min(it, 0.5f), i)
+ assertEquals(min(it, 0.5f), i)
}
}.test()
}