mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-03 23:51:48 +00:00
test: fix templating warnings (#643)
##### SUMMARY Remove warnings from ansible test tasks.
This commit is contained in:
parent
1ac7cfecc1
commit
1ec09d252d
3 changed files with 3 additions and 3 deletions
|
|
@ -74,7 +74,7 @@
|
|||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result.hcloud_certificate.name == "changed-{{ hcloud_certificate_name }}"
|
||||
- result.hcloud_certificate.name == "changed-" + hcloud_certificate_name
|
||||
|
||||
- name: test update certificate with same labels
|
||||
hetzner.hcloud.certificate:
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@
|
|||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result.hcloud_placement_group.name == "changed-{{ hcloud_placement_group_name }}"
|
||||
- result.hcloud_placement_group.name == "changed-" + hcloud_placement_group_name
|
||||
|
||||
- name: test update placement group idempotence
|
||||
hetzner.hcloud.placement_group:
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@
|
|||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result.hcloud_ssh_key.name == "changed-{{ hcloud_ssh_key_name }}"
|
||||
- result.hcloud_ssh_key.name == "changed-" + hcloud_ssh_key_name
|
||||
|
||||
- name: test update ssh key with same labels
|
||||
hetzner.hcloud.ssh_key:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue