1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

test: fix templating warnings (#643)

##### SUMMARY

Remove warnings from ansible test tasks.
This commit is contained in:
Jonas L. 2025-06-03 13:20:17 +02:00 committed by GitHub
parent 1ac7cfecc1
commit 1ec09d252d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@
assert: assert:
that: that:
- result is changed - 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 - name: test update certificate with same labels
hetzner.hcloud.certificate: hetzner.hcloud.certificate:

View file

@ -139,7 +139,7 @@
assert: assert:
that: that:
- result is changed - 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 - name: test update placement group idempotence
hetzner.hcloud.placement_group: hetzner.hcloud.placement_group:

View file

@ -71,7 +71,7 @@
assert: assert:
that: that:
- result is changed - 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 - name: test update ssh key with same labels
hetzner.hcloud.ssh_key: hetzner.hcloud.ssh_key: