aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/test/varargs_assignment_spec.yue
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/test/varargs_assignment_spec.yue')
-rw-r--r--spec/inputs/test/varargs_assignment_spec.yue2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/inputs/test/varargs_assignment_spec.yue b/spec/inputs/test/varargs_assignment_spec.yue
index 1c3b627..dfd606b 100644
--- a/spec/inputs/test/varargs_assignment_spec.yue
+++ b/spec/inputs/test/varargs_assignment_spec.yue
@@ -46,7 +46,7 @@ describe "varargs assignment", ->
46 assert.same select(3, ...), 2 46 assert.same select(3, ...), 2
47 47
48 it "should work with table.unpack", -> 48 it "should work with table.unpack", ->
49 tb = {a: 1, b: 2, c: 3} 49 tb = [1, 2, 3]
50 fn = -> table.unpack tb 50 fn = -> table.unpack tb
51 ... = fn! 51 ... = fn!
52 count = select '#', ... 52 count = select '#', ...