Skip to content

Commit

Permalink
Fix Host verify_credentials_task password expectation
Browse files Browse the repository at this point in the history
The password is encrypted on the queue so we have to update our
expectations in this test.
  • Loading branch information
agrare committed Oct 2, 2024
1 parent 46ee324 commit 84ad444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/requests/hosts_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@

verify_options = {
"authentications" => {
"default" => {"userid" => "root", "password" => "abc123"}
"default" => {"userid" => "root", "password" => ManageIQ::Password.encrypt("abc123")}
}
}

Expand Down

0 comments on commit 84ad444

Please sign in to comment.