fix vetting for test fail print statements
This commit is contained in:
parent
ab542c07ff
commit
20390ff1ec
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue