From 3b9fedbeb19b32f6f3c82a67b90a45142f32abdb Mon Sep 17 00:00:00 2001 From: David MEJIA Date: Mon, 1 Mar 2021 11:58:47 +0100 Subject: [PATCH] fix test --- provider/data_source_keycloak_authentication_flow_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provider/data_source_keycloak_authentication_flow_test.go b/provider/data_source_keycloak_authentication_flow_test.go index f845121b4..185d97c85 100644 --- a/provider/data_source_keycloak_authentication_flow_test.go +++ b/provider/data_source_keycloak_authentication_flow_test.go @@ -17,7 +17,7 @@ func TestAccKeycloakDataSourceAuthenticationFlow_basic(t *testing.T) { resource.Test(t, resource.TestCase{ ProviderFactories: testAccProviderFactories, PreCheck: func() { testAccPreCheck(t) }, - CheckDestroy: testAccCheckKeycloakAuthenticationFlowDestroy(), + CheckDestroy: testAccCheckKeycloakAuthenticationFlowDestroy, Steps: []resource.TestStep{ { Config: testDataSourceKeycloakAuthenticationFlow_basic(alias), @@ -61,7 +61,7 @@ func TestAccKeycloakDataSourceAuthenticationExecution_wrongAlias(t *testing.T) { resource.Test(t, resource.TestCase{ ProviderFactories: testAccProviderFactories, PreCheck: func() { testAccPreCheck(t) }, - CheckDestroy: testAccCheckKeycloakAuthenticationExecutionConfigDestroy, + CheckDestroy: testAccCheckKeycloakAuthenticationFlowDestroy, Steps: []resource.TestStep{ { Config: testDataSourceKeycloakAuthenticationFlow_wrongAlias(alias),