From 54fc2821cd94ee4a61037128cb20b326e945f546 Mon Sep 17 00:00:00 2001 From: Chaitanya Bankanhal Date: Wed, 15 Jul 2020 00:01:41 +0530 Subject: [PATCH] core/command: Add version command instead of ls --- fs/rc/internal_test.go | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/fs/rc/internal_test.go b/fs/rc/internal_test.go index 64b212b1a..c22bf3a57 100644 --- a/fs/rc/internal_test.go +++ b/fs/rc/internal_test.go @@ -5,8 +5,6 @@ import ( "runtime" "testing" - "github.com/rclone/rclone/fstest" - "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -125,17 +123,11 @@ func TestCoreQuit(t *testing.T) { // core/command: Runs a raw rclone command func TestCoreCommand(t *testing.T) { call := Calls.Get("core/command") - r := fstest.NewRun(t) - defer r.Finalise() in := Params{ - "command": "ls", - "opt": map[string]string{ - "max-depth": "1", - }, - "arg": []string{ - r.FremoteName, - }, + "command": "version", + "opt": map[string]string{}, + "arg": []string{}, } got, err := call.Fn(context.Background(), in) require.NoError(t, err)