From 7fb7b9a9d78e90f4d9c1374168a168d57ba52b42 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 23 May 2017 14:13:19 +0100 Subject: [PATCH] Remove when {{ Finally deprecated by ansible Change-Id: I0b164f5c751f8ce5b5f0d55fb95f2c116bab3e0a --- tests/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.yml b/tests/test.yml index 2aadbfe5..354b523f 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -33,8 +33,8 @@ - include: test-calico-functional.yml when: - - "{{ neutron_plugin_type == 'ml2.calico' }}" + - "neutron_plugin_type == 'ml2.calico'" - include: test-dragonflow-functional.yml when: - - "{{ neutron_plugin_type == 'ml2.dragonflow' }}" + - "neutron_plugin_type == 'ml2.dragonflow'"