diff options
author | The Magician <magic-modules@google.com> | 2019-05-20 20:43:58 +0200 |
---|---|---|
committer | ansibot <ansibot@users.noreply.github.com> | 2019-05-20 20:43:57 +0200 |
commit | d4b29e78386247affb4aaeb5367f57fa6ba8b70f (patch) | |
tree | 533ff9672bb2708e339b7238d3772f7ec14d17c1 /test/integration/targets/gcp_compute_ssl_policy | |
parent | Bug fixes for GCP modules (#55977) (diff) | |
download | ansible-d4b29e78386247affb4aaeb5367f57fa6ba8b70f.tar.xz ansible-d4b29e78386247affb4aaeb5367f57fa6ba8b70f.zip |
Bug fixes for GCP modules (#55975)
Diffstat (limited to 'test/integration/targets/gcp_compute_ssl_policy')
-rw-r--r-- | test/integration/targets/gcp_compute_ssl_policy/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/gcp_compute_ssl_policy/tasks/main.yml b/test/integration/targets/gcp_compute_ssl_policy/tasks/main.yml index 05bd52f636..01332bb177 100644 --- a/test/integration/targets/gcp_compute_ssl_policy/tasks/main.yml +++ b/test/integration/targets/gcp_compute_ssl_policy/tasks/main.yml @@ -57,7 +57,7 @@ - name: verify that command succeeded assert: that: - - results['items'] | length == 1 + - results['resources'] | length == 1 # ---------------------------------------------------------------------------- - name: create a ssl policy that already exists gcp_compute_ssl_policy: @@ -109,7 +109,7 @@ - name: verify that command succeeded assert: that: - - results['items'] | length == 0 + - results['resources'] | length == 0 # ---------------------------------------------------------------------------- - name: delete a ssl policy that does not exist gcp_compute_ssl_policy: |