Fix nsToMs

This commit is contained in:
Simon Ogorodnik
2018-05-17 14:39:59 +03:00
parent 391c516ed0
commit ce71e0822c
@@ -136,7 +136,7 @@ abstract class AllKotlinTest : DaemonAnalyzerTestCase() {
}
companion object {
val Long.nsToMs get() = this * (1e-6).toLong()
val Long.nsToMs get() = (this * 1e-6).toLong()
}
}