aboutsummaryrefslogtreecommitdiff
path: root/tests/math/division
diff options
context:
space:
mode:
Diffstat (limited to 'tests/math/division')
-rw-r--r--tests/math/division/bad_type_list.neb2
-rw-r--r--tests/math/division/bad_type_type.neb2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/math/division/bad_type_list.neb b/tests/math/division/bad_type_list.neb
index e394b7b..4091db6 100644
--- a/tests/math/division/bad_type_list.neb
+++ b/tests/math/division/bad_type_list.neb
@@ -1,2 +1,2 @@
(/ 4 (list "hello"))
-; panic! [1] '/': received :list, expected :number (got ("hello"))
+; panic! [1] '/': received :[:any], expected :number (got ("hello"))
diff --git a/tests/math/division/bad_type_type.neb b/tests/math/division/bad_type_type.neb
index c008850..aeec848 100644
--- a/tests/math/division/bad_type_type.neb
+++ b/tests/math/division/bad_type_type.neb
@@ -1,2 +1,2 @@
-(/ .4 :string)
+(/ 0.4 :string)
; panic! [1] '/': received :type, expected :number (got :string)