server: Rename CreateMasterKey() to Init()

This commit is contained in:
Alexander Neumann
2015-05-04 20:40:17 +02:00
parent ae1a85c896
commit 35af933f24
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ func SetupBackend(t testing.TB) *server.Server {
OK(t, err)
s := server.NewServer(b)
OK(t, s.CreateMasterKey(*TestPassword))
OK(t, s.Init(*TestPassword))
return s
}