fix up build warnings

This commit is contained in:
Chelsea Holland Komlo
2017-10-06 21:54:55 -04:00
committed by Alex Dadgar
parent 5e0da10bcd
commit 76b2c50dbc
2 changed files with 6 additions and 1 deletions

View File

@@ -320,6 +320,11 @@ func TestHTTP_AllocSnapshot(t *testing.T) {
func createMigrateTokenForClientAndAlloc(allocID, clientSecret string) (string, error) {
h, err := blake2b.New512([]byte(clientSecret))
if err != nil {
return "", err
}
h.Write([]byte(allocID))
validMigrateToken, err := string(h.Sum(nil)), nil
return validMigrateToken, err