Skip to content

Commit

Permalink
ignore puppet warnings during acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Oct 10, 2014
1 parent cd44a66 commit 0e51725
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions spec/acceptance/selenium_hub_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class { 'selenium::hub': }
EOS

# Run it twice and test for idempotency
expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
end

Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/selenium_node_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class { 'selenium::node': }
EOS

# Run it twice and test for idempotency
expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
end

Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/selenium_server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class { 'selenium::server': }
EOS

# Run it twice and test for idempotency
expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
end

Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/selenium_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class { 'selenium': }
EOS

# Run it twice and test for idempotency
expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
end

Expand Down

0 comments on commit 0e51725

Please sign in to comment.