From e542d6efdf0ccb9f58b942ba1cce8dc33aba5789 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 1 May 2015 10:56:46 -0700 Subject: [PATCH] terraform: test to verify config variables are variables --- terraform/graph_config_node_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/graph_config_node_test.go b/terraform/graph_config_node_test.go index c2b016ece..b297c6c13 100644 --- a/terraform/graph_config_node_test.go +++ b/terraform/graph_config_node_test.go @@ -112,4 +112,5 @@ func TestGraphNodeConfigVariable_impl(t *testing.T) { var _ dag.Vertex = new(GraphNodeConfigVariable) var _ dag.NamedVertex = new(GraphNodeConfigVariable) var _ graphNodeConfig = new(GraphNodeConfigVariable) + var _ GraphNodeVariable = new(GraphNodeConfigVariable) }