v0.3.0-dev-18 #459

Merged
altavir merged 64 commits from dev into master 2022-02-13 17:50:34 +03:00
Showing only changes of commit 2f96d619fc - Show all commits

View File

@ -19,8 +19,8 @@ import kotlin.test.assertFailsWith
internal class TestCompilerVariables { internal class TestCompilerVariables {
@Test @Test
fun testNoVariables() = runCompilerTest { fun testNoVariables() = runCompilerTest {
val expr = "0".parseMath().compileToExpression(IntRing) val expr = "0".parseMath().compileToExpression(DoubleField)
assertEquals(0, expr()) assertEquals(0.0, expr(), 0.0001)
} }
@Test @Test