summaryrefslogtreecommitdiff
path: root/tests/suite/scripting
diff options
context:
space:
mode:
Diffstat (limited to 'tests/suite/scripting')
-rw-r--r--tests/suite/scripting/call.typ4
-rw-r--r--tests/suite/scripting/params.typ10
2 files changed, 7 insertions, 7 deletions
diff --git a/tests/suite/scripting/call.typ b/tests/suite/scripting/call.typ
index 5a5fb326..af5f5eaa 100644
--- a/tests/suite/scripting/call.typ
+++ b/tests/suite/scripting/call.typ
@@ -141,7 +141,7 @@
#{
let save(..args) = {
test(type(args), arguments)
- test(repr(args), "(three: true, 1, 2)")
+ test(repr(args), "arguments(three: true, 1, 2)")
}
save(1, 2, three: true)
@@ -159,7 +159,7 @@
#{
let more = (c: 3, d: 4)
let tostr(..args) = repr(args)
- test(tostr(a: 1, ..more, b: 2), "(a: 1, c: 3, d: 4, b: 2)")
+ test(tostr(a: 1, ..more, b: 2), "arguments(a: 1, c: 3, d: 4, b: 2)")
}
--- call-args-spread-none ---
diff --git a/tests/suite/scripting/params.typ b/tests/suite/scripting/params.typ
index 688124f2..0f14fc3e 100644
--- a/tests/suite/scripting/params.typ
+++ b/tests/suite/scripting/params.typ
@@ -29,17 +29,17 @@
// Spread at beginning.
#{
let f(..a, b) = (a, b)
- test(repr(f(1)), "((), 1)")
- test(repr(f(1, 2, 3)), "((1, 2), 3)")
- test(repr(f(1, 2, 3, 4, 5)), "((1, 2, 3, 4), 5)")
+ test(repr(f(1)), "(arguments(), 1)")
+ test(repr(f(1, 2, 3)), "(arguments(1, 2), 3)")
+ test(repr(f(1, 2, 3, 4, 5)), "(arguments(1, 2, 3, 4), 5)")
}
--- params-sink-in-middle ---
// Spread in the middle.
#{
let f(a, ..b, c) = (a, b, c)
- test(repr(f(1, 2)), "(1, (), 2)")
- test(repr(f(1, 2, 3, 4, 5)), "(1, (2, 3, 4), 5)")
+ test(repr(f(1, 2)), "(1, arguments(), 2)")
+ test(repr(f(1, 2, 3, 4, 5)), "(1, arguments(2, 3, 4), 5)")
}
--- params-sink-unnamed-empty ---