diff options
-rw-r--r-- | test/functional/provider/define_spec.lua | 4 |
1 files 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 |