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

This commit is contained in:
jo 2025-06-02 21:33:13 +02:00
parent d609bad979
commit 859be7a048
No known key found for this signature in database
GPG key ID: B2FEC9B22722B984
3 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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:

View file

@ -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: