diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-09-11 14:42:43 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-09-11 14:42:43 +0200 |
| commit | 305524d005df075d53575552ee090fb53192a3fe (patch) | |
| tree | 08b739e8fc41057b79a2d7ea7a7208ca358d60b3 /tests/typ/compute/foundations.typ | |
| parent | b471ac7d590abd2398ce25193b4e4df373bf2e9c (diff) | |
Update tests for type system changes
Diffstat (limited to 'tests/typ/compute/foundations.typ')
| -rw-r--r-- | tests/typ/compute/foundations.typ | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/typ/compute/foundations.typ b/tests/typ/compute/foundations.typ index 3da2e601..4e74966f 100644 --- a/tests/typ/compute/foundations.typ +++ b/tests/typ/compute/foundations.typ @@ -2,9 +2,9 @@ // Ref: false --- -#test(type(1), "integer") -#test(type(ltr), "direction") -#test(type(10 / 3), "float") +#test(type(1), int) +#test(type(ltr), direction) +#test(type(10 / 3), float) --- #test(repr(ltr), "ltr") @@ -68,9 +68,9 @@ --- // Test the `type` function. -#test(type(1), "integer") -#test(type(ltr), "direction") -#test(type(10 / 3), "float") +#test(type(1), int) +#test(type(ltr), direction) +#test(type(10 / 3), float) --- // Test the eval function. |
