fix vetting for test fail print statements

pull/5591/head
Megan Marsh 9 years ago
parent ab542c07ff
commit 20390ff1ec

@ -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…
Cancel
Save