Skip to content

Commit

Permalink
Acceptance test: fix display result 6
Browse files Browse the repository at this point in the history
  • Loading branch information
ismirlia committed Dec 6, 2024
1 parent 580f545 commit 8db325f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ibm/acctest/acctest.go
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ func init() {
// Added for Power Colo Testing
Pi_image = os.Getenv("PI_IMAGE")
if Pi_image == "" {
Pi_image = "5b9568e5-8e39-420e-be63-a16cf7faa98e"
Pi_image = "5b9568e5-8e39-420e-be63-a16cf7faa98f"
fmt.Println("[INFO] Set the environment variable PI_IMAGE for testing ibm_pi_image resource else it is set to default value '7200-03-03'")
}
Pi_sap_image = os.Getenv("PI_SAP_IMAGE")
Expand Down
2 changes: 1 addition & 1 deletion ibm/service/power/data_source_ibm_pi_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func dataSourceIBMPIImagesRead(ctx context.Context, d *schema.ResourceData, meta
d.Set(Attr_CRN, imagedata.Crn)
tags, err := flex.GetTagsUsingCRN(meta, string(imagedata.Crn))
if err != nil {
log.Printf("Error on get of pi image (%s) user_tags : %s", *imagedata.ImageID, err)
log.Printf("Error on get of pi image (%s) user_tags : %s", *imagedata.ImageID, err)
}
d.Set(Attr_UserTags, tags)
}
Expand Down

0 comments on commit 8db325f

Please sign in to comment.