summaryrefslogtreecommitdiff
path: root/buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb')
-rw-r--r--buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb b/buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb
index 0f51ab4fea4..0f848db7f9e 100644
--- a/buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb
+++ b/buildscripts/package_test/test/recipes/service/install_mongodb_spec.rb
@@ -59,13 +59,13 @@ if os[:arch] == 'x86_64' and
((os[:name] == 'ubuntu' and os[:release].split('.')[0].to_i > 12) or
(os[:family] == 'redhat' and os[:release].split('.')[0].to_i >= 7) or
(os[:name] == 'debian' and os[:release].split('.')[0].to_i >= 10) or
- os[:name] == 'amazon')
+ (os[:name] == 'amazon'))
describe command("install_compass") do
its('exit_status') { should eq 0 }
end
else
describe command("install_compass") do
- its('exit_status') { should_not eq 0 }
+ its('stdout') { should match /open a ticket on the SERVER project/ }
end
end