test(evaluator): Fix incorrect character (use minus from UTF-8 Mathematical Operators instead of "-" from ASCII Punctuation)

Signed-off-by: Myzel394 <50424412+Myzel394@users.noreply.github.com>
This commit is contained in:
Myzel394 2024-07-21 19:59:15 +02:00
parent 33293a4c28
commit cc7c719ee9
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

View File

@ -143,7 +143,7 @@ class ExpressionSimpleTest {
fun zeroExponent() = assertExpr("5^0", "1") fun zeroExponent() = assertExpr("5^0", "1")
@Test @Test
fun negativeExponent() = assertExpr("5^(-2)", "0.04") fun negativeExponent() = assertExpr("5^(2)", "0.04")
@Test @Test
fun trigonometricLimits() = assertExpr("sin(0)", "0") fun trigonometricLimits() = assertExpr("sin(0)", "0")