From 4c7c46bf40d9c98d92e0ad5cf4c5ec0c14b60abf Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 23 Feb 2017 10:51:29 -0800 Subject: [PATCH] command: fix test for new Meta type --- command/refresh_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/refresh_test.go b/command/refresh_test.go index c196db394..2defaff45 100644 --- a/command/refresh_test.go +++ b/command/refresh_test.go @@ -794,7 +794,7 @@ func newInstanceState(id string) *terraform.InstanceState { Ephemeral: terraform.EphemeralState{ ConnInfo: make(map[string]string), }, - Meta: make(map[string]string), + Meta: make(map[string]interface{}), } }