summaryrefslogtreecommitdiffstats
path: root/acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb')
-rw-r--r--acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb b/acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb
index 3b0e21512..e57b268ef 100644
--- a/acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb
+++ b/acceptance/tests/ticket_5477_master_not_dectect_sitepp.rb
@@ -24,7 +24,9 @@ with_master_running_on(master, "--manifest #{manifest_file} --certdnsnames=\"pup
sleep 3
step "Agent: puppet agent --test"
- on agents, puppet_agent("--test"), :acceptable_exit_codes => [2] do
- fail_test "Site.pp not detect at Master?" unless stdout.include? 'ticket_5477_notify'
+ agents.each do |host|
+ on(host, puppet_agent("--test"), :acceptable_exit_codes => [2]) do
+ assert_match(/ticket_5477_notify/, stdout, "#{host}: Site.pp not detected on Puppet Master")
+ end
end
end