fix: fix tests
This commit is contained in:
parent
4991897eca
commit
c5bdcaec6a
5 changed files with 179 additions and 177 deletions
|
|
@ -79,7 +79,7 @@ func TestAccSQLServerFlexMinResource(t *testing.T) {
|
|||
Steps: []resource.TestStep{
|
||||
// Creation
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMinConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMinConfig,
|
||||
ConfigVariables: testConfigVarsMin,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance
|
||||
|
|
@ -107,7 +107,7 @@ func TestAccSQLServerFlexMinResource(t *testing.T) {
|
|||
},
|
||||
// Update
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMinConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMinConfig,
|
||||
ConfigVariables: testConfigVarsMin,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance
|
||||
|
|
@ -134,7 +134,7 @@ func TestAccSQLServerFlexMinResource(t *testing.T) {
|
|||
},
|
||||
// data source
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMinConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMinConfig,
|
||||
ConfigVariables: testConfigVarsMin,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance data
|
||||
|
|
@ -218,7 +218,7 @@ func TestAccSQLServerFlexMinResource(t *testing.T) {
|
|||
},
|
||||
// Update
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMinConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMinConfig,
|
||||
ConfigVariables: configVarsMinUpdated(),
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance data
|
||||
|
|
@ -244,7 +244,7 @@ func TestAccSQLServerFlexMaxResource(t *testing.T) {
|
|||
Steps: []resource.TestStep{
|
||||
// Creation
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMaxConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMaxConfig,
|
||||
ConfigVariables: testConfigVarsMax,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance
|
||||
|
|
@ -279,7 +279,7 @@ func TestAccSQLServerFlexMaxResource(t *testing.T) {
|
|||
},
|
||||
// Update
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMaxConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMaxConfig,
|
||||
ConfigVariables: testConfigVarsMax,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance
|
||||
|
|
@ -314,7 +314,7 @@ func TestAccSQLServerFlexMaxResource(t *testing.T) {
|
|||
},
|
||||
// data source
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMaxConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMaxConfig,
|
||||
ConfigVariables: testConfigVarsMax,
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance data
|
||||
|
|
@ -407,7 +407,7 @@ func TestAccSQLServerFlexMaxResource(t *testing.T) {
|
|||
},
|
||||
// Update
|
||||
{
|
||||
Config: testutil.SQLServerFlexProviderConfig() + "\n" + resourceMaxConfig,
|
||||
Config: testutil.SQLServerFlexProviderConfig("") + "\n" + resourceMaxConfig,
|
||||
ConfigVariables: configVarsMaxUpdated(),
|
||||
Check: resource.ComposeAggregateTestCheckFunc(
|
||||
// Instance data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue