summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 4004693..72bf9a2 100644
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -177,7 +177,7 @@ run_test "./math-int if_eq 81 -81 0"
#True
run_test "./math-int if_lt 2 10 1"
#True, but abs(x) > y
-run_test "./math if_lt -20 3 1"
+run_test "./math-int if_lt -20 3 1"
#False
run_test "./math-int if_lt 15 3 0"
@@ -188,7 +188,7 @@ run_test "./math-int if_lt 15 3 0"
#True
run_test "./math-int if_le 20 25 1"
#True x == y
-run_test "./mat-int if_le 18 18 1"
+run_test "./math-int if_le 18 18 1"
#True, but abs(x) > y
run_test "./math-int if_le -10 5 1"
#False