'is in' is not a valid Jinja test

Ansible complains that "is in" is not a valid test, use "in" instead.
(introduced in f20c29689)

Change-Id: I02670fe00f9d9d5ef12a2f3af5bede35442f1397
This commit is contained in:
François Charlier 2019-08-13 16:10:44 +02:00 committed by Sagi Shnaidman
parent ad955589c8
commit ae40f0ff93

View File

@ -93,7 +93,7 @@ tempest_test_image_name: cirros-{{ tempest_test_image_version }}-x86_64-disk.img
tempest_test_image_path: http://download.cirros-cloud.net/{{ tempest_test_image_version }}/{{ tempest_test_image_name }}
# A dict containing values to be removed from tempest.conf
tempest_conf_removal: >-
{% if release is in ['queens'] -%}
{% if release in ['queens'] -%}
{{ tempest_conf_removal_queens }}
{%- else -%}
{{ tempest_conf_removal_all }}