From 89123017b8148569bafb34d03304358cf1411a7f Mon Sep 17 00:00:00 2001 From: kuuote Date: Mon, 1 Jun 2020 00:10:17 +0900 Subject: [PATCH] test: rewrite to multiple arguments --- test/functional/provider/define_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/provider/define_spec.lua b/test/functional/provider/define_spec.lua index c04dcd47b9..1d50ce0a56 100644 --- a/test/functional/provider/define_spec.lua +++ b/test/functional/provider/define_spec.lua @@ -92,12 +92,12 @@ local function command_specs_for(fn, sync, first_arg_factory, init) it('with nargs/double-quote', function() call(fn, args..', {"nargs": "*"}') local function on_setup() - command('RpcCommand "arg"') + command('RpcCommand "arg1" "arg2" "arg3"') end local function handler(method, arguments) eq('test-handler', method) - eq({'"arg"'}, arguments[1]) + eq({'"arg1"', '"arg2"', '"arg3"'}, arguments[1]) return '' end