Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nkzou committed Dec 27, 2024
1 parent 9fffa04 commit f738f28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datadog/resource_datadog_synthetics_test_.go
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ func syntheticsTestBrowserStep() *schema.Schema {
Description: "A unique identifier used to track steps after reordering.",
Type: schema.TypeString,
Optional: true,
},
},
"public_id": {
Description: "The identifier of the step on the backend.",
Type: schema.TypeString,
Expand Down Expand Up @@ -2154,7 +2154,7 @@ func updateSyntheticsBrowserTestLocalState(d *schema.ResourceData, syntheticsTes
localKey, ok := d.GetOk(fmt.Sprintf("browser_step.%d.local_key", stepIndex))
if ok {
localStep["local_key"] = localKey
}
}
publicId, ok := d.GetOk(fmt.Sprintf("browser_step.%d.public_id", stepIndex))
if ok {
localStep["public_id"] = publicId
Expand Down

0 comments on commit f738f28

Please sign in to comment.