From 305524d005df075d53575552ee090fb53192a3fe Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 11 Sep 2023 14:42:43 +0200 Subject: Update tests for type system changes --- tests/typ/compiler/recursion.typ | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/typ/compiler/recursion.typ') diff --git a/tests/typ/compiler/recursion.typ b/tests/typ/compiler/recursion.typ index 1bd53178..82da7245 100644 --- a/tests/typ/compiler/recursion.typ +++ b/tests/typ/compiler/recursion.typ @@ -23,13 +23,13 @@ // Test capturing with named function. #let f = 10 #let f() = f -#test(type(f()), "function") +#test(type(f()), function) --- // Test capturing with unnamed function. #let f = 10 #let f = () => f -#test(type(f()), "integer") +#test(type(f()), int) --- // Error: 15-21 maximum function call depth exceeded -- cgit v1.2.3