fix vetting for test fail print statements

This commit is contained in:
Megan Marsh 2017-11-15 17:01:53 -08:00
parent ab542c07ff
commit 20390ff1ec
2 changed files with 2 additions and 2 deletions

View File

@ -514,6 +514,6 @@ func TestUserVariablesInBootCommand(t *testing.T) {
ret := step.Run(state) ret := step.Run(state)
if ret != multistep.ActionContinue { if ret != multistep.ActionContinue {
t.Fatalf("should not have error: %s", ret) t.Fatalf("should not have error: %#v", ret)
} }
} }

View File

@ -535,6 +535,6 @@ func TestUserVariablesInBootCommand(t *testing.T) {
ret := step.Run(state) ret := step.Run(state)
if ret != multistep.ActionContinue { if ret != multistep.ActionContinue {
t.Fatalf("should not have error: %s", ret) t.Fatalf("should not have error: %#v", ret)
} }
} }