command/state-push: fix go vet

This commit is contained in:
Mitchell Hashimoto 2017-03-01 13:19:44 -08:00
parent ee985a606c
commit 868230ee60
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ func TestStatePush_replaceMatchStdin(t *testing.T) {
// Setup the replacement to come from stdin
var buf bytes.Buffer
if err := terraform.WriteState(expected, &buf); err != nil {
t.Fatalf("err: %s")
t.Fatalf("err: %s", err)
}
defer testStdinPipe(t, &buf)()