From 84ad444a2044995c0a7a78bc4cefefbdc28e8a95 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Wed, 2 Oct 2024 17:19:05 -0400 Subject: [PATCH] Fix Host verify_credentials_task password expectation The password is encrypted on the queue so we have to update our expectations in this test. --- spec/requests/hosts_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/hosts_spec.rb b/spec/requests/hosts_spec.rb index 9a720ac17f..36fe4e2323 100644 --- a/spec/requests/hosts_spec.rb +++ b/spec/requests/hosts_spec.rb @@ -126,7 +126,7 @@ verify_options = { "authentications" => { - "default" => {"userid" => "root", "password" => "abc123"} + "default" => {"userid" => "root", "password" => ManageIQ::Password.encrypt("abc123")} } }