From 46ba98233aad008bb3801efc0834be574b7fa587 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 30 May 2018 21:47:11 -0400 Subject: [PATCH] core: change more "count" variables to "num" --- terraform/context_apply_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index b5cf5c17ef..5fb2fc1619 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -3002,7 +3002,7 @@ func TestContext2Apply_moduleVarResourceCount(t *testing.T) { }, ), Variables: InputValues{ - "count": &InputValue{ + "num": &InputValue{ Value: cty.NumberIntVal(2), SourceType: ValueFromCaller, }, @@ -3026,7 +3026,7 @@ func TestContext2Apply_moduleVarResourceCount(t *testing.T) { }, ), Variables: InputValues{ - "count": &InputValue{ + "num": &InputValue{ Value: cty.NumberIntVal(5), SourceType: ValueFromCaller, },