From a3b9622f8b6871bf86401db059b6fca4a482d36d Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Tue, 20 Oct 2020 19:55:49 -0700 Subject: [PATCH] result length is 3 in Azure, 4 on local Mac --- tests/ansible/integration/transport_config/become_pass.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ansible/integration/transport_config/become_pass.yml b/tests/ansible/integration/transport_config/become_pass.yml index a3dd7594..6a2188b1 100644 --- a/tests/ansible/integration/transport_config/become_pass.yml +++ b/tests/ansible/integration/transport_config/become_pass.yml @@ -136,7 +136,7 @@ - {mitogen_get_stack: {}, register: out} - assert: that: - - out.result|length == 4 + - out.result|length == 3 - out.result[0].method == "ssh" - out.result[1].method == "sudo" - out.result[1].kwargs.password == "a.b.c"