fix the error message

It's puppet-cloud, not puppet-horizon.
This commit is contained in:
Gonéri Le Bouder
2014-02-10 11:23:25 +01:00
parent 3e08dcf087
commit f3047f5b50
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
class cloud { class cloud {
if ! ($::osfamily in [ 'RedHat', 'Debian' ]) { if ! ($::osfamily in [ 'RedHat', 'Debian' ]) {
fail("module puppet-horizon doesn't support ${::osfamily}") fail("module puppet-cloud only support ${::osfamily}, only Red Hat or Debian")
} }
# motd # motd

View File

@@ -84,7 +84,7 @@ describe 'cloud' do
end end
it 'should fail' do it 'should fail' do
expect { subject }.to raise_error(/module puppet-horizon doesn't support/) expect { subject }.to raise_error(/module puppet-cloud only support/)
end end
end end