From 82e835d6fcf1e72aa4b2b9d8a578e3b5d1a89cd8 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 18 Mar 2018 14:23:56 +0000 Subject: [PATCH] serve restic: make it easy to run integration tests against any remote Just `cd cmd/serve/restic` then `go test -v -remote TestRemote:` --- cmd/serve/restic/restic_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/serve/restic/restic_test.go b/cmd/serve/restic/restic_test.go index cb8ae28e2..80d22325d 100644 --- a/cmd/serve/restic/restic_test.go +++ b/cmd/serve/restic/restic_test.go @@ -7,7 +7,7 @@ import ( "os/exec" "testing" - _ "github.com/ncw/rclone/backend/local" + _ "github.com/ncw/rclone/backend/all" "github.com/ncw/rclone/cmd/serve/httplib" "github.com/ncw/rclone/fstest" "github.com/stretchr/testify/assert"