Skip to content

Commit

Permalink
after go generate
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaciejc committed Jan 8, 2025
1 parent 64a8955 commit 4852383
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions internal/provider/data_source_fmc_device_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func TestAccDataSourceFmcDeviceCluster(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
ErrorCheck: func(err error) error { return testAccErrorCheck(t, err) },
Steps: []resource.TestStep{
{
Config: testAccDataSourceFmcDeviceClusterPrerequisitesConfig + testAccDataSourceFmcDeviceClusterConfig(),
Expand Down
3 changes: 2 additions & 1 deletion internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ func (p *FmcProvider) Resources(ctx context.Context) []func() resource.Resource
NewAccessControlPolicyResource,
NewBFDTemplateResource,
NewDeviceResource,
NewDeviceClusterResource,
NewDeviceBFDResource,
NewDeviceBGPResource,
NewDeviceBGPGeneralSettingsResource,
NewDeviceClusterResource,
NewDeviceEtherChannelInterfaceResource,
NewDeviceHAPairMonitoringResource,
NewDeviceIPv4StaticRouteResource,
Expand Down Expand Up @@ -357,6 +357,7 @@ func (p *FmcProvider) DataSources(ctx context.Context) []func() datasource.DataS
NewDeviceBFDDataSource,
NewDeviceBGPDataSource,
NewDeviceBGPGeneralSettingsDataSource,
NewDeviceClusterDataSource,
NewDeviceEtherChannelInterfaceDataSource,
NewDeviceHAPairMonitoringDataSource,
NewDeviceIPv4StaticRouteDataSource,
Expand Down
1 change: 1 addition & 0 deletions internal/provider/resource_fmc_device_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ func TestAccFmcDeviceCluster(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
ErrorCheck: func(err error) error { return testAccErrorCheck(t, err) },
Steps: steps,
})
}
Expand Down

0 comments on commit 4852383

Please sign in to comment.