Skip to content

Commit

Permalink
Remove extra braces from inspec ssl policy test
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
slevenick authored and Stuart Paterson committed Jan 15, 2019
1 parent 2896613 commit 9a0014a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/google_compute_ssl_policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe google_compute_ssl_policies(project: 'chef-gcp-inspec') do
end
google_compute_ssl_policies(project: 'chef-gcp-inspec').names.each do |policy_name|
describe google_compute_ssl_policy({project: 'chef-gcp-inspec', name: policy_name}) do
describe google_compute_ssl_policy(project: 'chef-gcp-inspec', name: policy_name) do
its('min_tls_version') { should eq 'TLS_1_2' }
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
end

google_compute_ssl_policies(project: gcp_project_id).names.each do |policy_name|
describe google_compute_ssl_policy({project: gcp_project_id, name: policy_name}) do
describe google_compute_ssl_policy(project: gcp_project_id, name: policy_name) do
its('min_tls_version') { should eq ssl_policy['min_tls_version'] }
end
end
Expand Down

0 comments on commit 9a0014a

Please sign in to comment.