From cbc61fffe897336ffe8451e437376cfd8e27763f Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 9 May 2015 14:45:09 +0200 Subject: [PATCH] Set test password to `geheim` instead of the empty string --- test/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/backend.go b/test/backend.go index 5a2524425..d9de39a3d 100644 --- a/test/backend.go +++ b/test/backend.go @@ -13,7 +13,7 @@ import ( "github.com/restic/restic/server" ) -var TestPassword = flag.String("test.password", "", `use this password for repositories created during tests (default: "geheim")`) +var TestPassword = flag.String("test.password", "geheim", `use this password for repositories created during tests (default: "geheim")`) var TestCleanup = flag.Bool("test.cleanup", true, "clean up after running tests (remove local backend directory with all content)") var TestTempDir = flag.String("test.tempdir", "", "use this directory for temporary storage (default: system temp dir)")