@@ -34,7 +34,7 @@ func TestAccMSOTenantPoliciesNetflowMonitorResource(t *testing.T) {
3434 resource .TestCheckResourceAttr ("mso_tenant_policies_netflow_monitor.netflow_monitor" , "netflow_exporter_uuids.#" , "2" ),
3535 ),
3636 },
37- {
37+ {
3838 PreConfig : func () { fmt .Println ("Test: Update NetFlow Remove Description and Record UUID" ) },
3939 Config : testAccMSOTenantPoliciesNetflowMonitorConfigRemoveOptionals (),
4040 Check : resource .ComposeTestCheckFunc (
@@ -57,7 +57,7 @@ func TestAccMSOTenantPoliciesNetflowMonitorResource(t *testing.T) {
5757}
5858
5959func testAccNeflowMonitorBaseConfig (extra_exporter bool ) string {
60- base := fmt .Sprintf (`%s
60+ base := fmt .Sprintf (`%s
6161 resource "mso_tenant_policies_netflow_exporter" "netflow_exporter" {
6262 template_id = mso_template.template_tenant.id
6363 name = "test_netflow_exporter"
@@ -67,17 +67,17 @@ func testAccNeflowMonitorBaseConfig(extra_exporter bool) string {
6767 name = "test_netflow_record"
6868 }` , testAccMSOTemplateResourceTenantConfig ())
6969
70- if extra_exporter {
71- return fmt .Sprintf (`%s
70+ if extra_exporter {
71+ return fmt .Sprintf (`%s
7272 resource "mso_tenant_policies_netflow_exporter" "netflow_exporter_2" {
7373 template_id = mso_template.template_tenant.id
7474 name = "test_netflow_exporter_2"
7575 // This is to ensure the exporters are deleted in order.
7676 depends_on = [mso_tenant_policies_netflow_exporter.netflow_exporter]
7777 }` , base )
78- }
78+ }
7979
80- return base
80+ return base
8181}
8282
8383func testAccMSOTenantPoliciesNetflowMonitorConfigCreate () string {
0 commit comments