mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 08:42:33 -04:00
fix vetting for test fail print statements
This commit is contained in:
parent
ab542c07ff
commit
20390ff1ec
2 changed files with 2 additions and 2 deletions
|
|
@ -514,6 +514,6 @@ func TestUserVariablesInBootCommand(t *testing.T) {
|
|||
|
||||
ret := step.Run(state)
|
||||
if ret != multistep.ActionContinue {
|
||||
t.Fatalf("should not have error: %s", ret)
|
||||
t.Fatalf("should not have error: %#v", ret)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -535,6 +535,6 @@ func TestUserVariablesInBootCommand(t *testing.T) {
|
|||
|
||||
ret := step.Run(state)
|
||||
if ret != multistep.ActionContinue {
|
||||
t.Fatalf("should not have error: %s", ret)
|
||||
t.Fatalf("should not have error: %#v", ret)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue