From 36717c7d9828420b40de2846ea2931e79efc5d55 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 18 Mar 2020 16:48:27 +0000 Subject: [PATCH] serve restic: fix tests after restic project removed vendoring --- cmd/serve/restic/restic_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/serve/restic/restic_test.go b/cmd/serve/restic/restic_test.go index bd3bc7cf1..23b3c77bb 100644 --- a/cmd/serve/restic/restic_test.go +++ b/cmd/serve/restic/restic_test.go @@ -61,6 +61,7 @@ func TestRestic(t *testing.T) { cmd := exec.Command("go", args...) cmd.Env = append(os.Environ(), "RESTIC_TEST_REST_REPOSITORY=rest:"+w.Server.URL()+path, + "GO111MODULE=on", ) out, err := cmd.CombinedOutput() if len(out) != 0 {