Skip to content

Commit

Permalink
Terraform: fix format specifer in IAM folder test message (hashicorp#528
Browse files Browse the repository at this point in the history
)

<!-- This change is generated by MagicModules. -->
/cc @drebes
  • Loading branch information
modular-magician authored and rileykarson committed Mar 14, 2019
1 parent 2e0a5a0 commit f5b9078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google-beta/resource_google_folder_iam_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func testAccCheckGoogleFolderIamPolicy(n string, policy *resourceManagerV2Beta1.
}

if !reflect.DeepEqual(p.Bindings, policy.Bindings) {
return fmt.Errorf("Incorrect iam policy bindings. Expected '%s', got '%s'", policy.Bindings, p.Bindings)
return fmt.Errorf("Incorrect iam policy bindings. Expected '%v', got '%v'", policy.Bindings, p.Bindings)
}

if _, ok = rs.Primary.Attributes["etag"]; !ok {
Expand Down

0 comments on commit f5b9078

Please sign in to comment.