packer: remove unused test variable

This commit is contained in:
Lars Lehtonen 2019-11-04 12:53:16 -08:00
parent a709867dee
commit 703f071b4a
No known key found for this signature in database
GPG Key ID: 8137D474EBCB04F2
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ func TestExpandUser_Empty(t *testing.T) {
var path, expected string
// Try an invalid user
path, err := ExpandUser("~invalid-user-that-should-not-exist")
_, err := ExpandUser("~invalid-user-that-should-not-exist")
if err == nil {
t.Fatalf("expected failure")
}