From 99e92f4bcad1498dba832f61f80b6b2014768391 Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Sat, 5 Aug 2017 20:55:11 +0200 Subject: [PATCH] Fix junos_command netconf_json lessthanorequal (#27808) --- .../junos_command/tests/netconf_json/lessthanorequal.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/targets/junos_command/tests/netconf_json/lessthanorequal.yaml b/test/integration/targets/junos_command/tests/netconf_json/lessthanorequal.yaml index 4a827bcdf77..2cf4c190be1 100644 --- a/test/integration/targets/junos_command/tests/netconf_json/lessthanorequal.yaml +++ b/test/integration/targets/junos_command/tests/netconf_json/lessthanorequal.yaml @@ -8,7 +8,7 @@ - show interfaces lo0 format: json wait_for: - - "result[1]['interface-information'][0]['physical-interface'][0]['mtu'][0]['local-index'] le 6" + - "result[1]['interface-information'][0]['physical-interface'][0]['local-index'][0] le 6" provider: "{{ netconf }}" register: result @@ -25,7 +25,7 @@ - show interfaces lo0 format: json wait_for: - - "result[1]['interface-information'][0]['physical-interface'][0]['mtu'][0]['local-index'] <= 6" + - "result[1]['interface-information'][0]['physical-interface'][0]['local-index'][0] <= 6" provider: "{{ netconf }}" register: result