From 1871363e58565994366c9d75270308c3bbf9ffa6 Mon Sep 17 00:00:00 2001 From: Mike Brannigan Date: Tue, 23 Aug 2016 18:19:59 -0500 Subject: [PATCH] Remove debug statements --- builtin/providers/aws/resource_aws_redshift_cluster_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_redshift_cluster_test.go b/builtin/providers/aws/resource_aws_redshift_cluster_test.go index 2e30cccc29..5cdbb5749a 100644 --- a/builtin/providers/aws/resource_aws_redshift_cluster_test.go +++ b/builtin/providers/aws/resource_aws_redshift_cluster_test.go @@ -436,9 +436,7 @@ func TestResourceAWSRedshiftClusterMasterPasswordValidation(t *testing.T) { } for _, tc := range cases { - fmt.Printf("Test Case Value: %s\n", tc.Value) _, errors := validateRedshiftClusterMasterPassword(tc.Value, "aws_redshift_cluster_master_password") - fmt.Printf("Expected: %d and found %d\n", tc.ErrCount, len(errors)) if len(errors) != tc.ErrCount { t.Fatalf("Expected the Redshift Cluster master_password to trigger a validation error")