Using wrong recipe names for logging tests

This commit is contained in:
John Dewey 2013-05-09 20:55:40 -07:00
parent 1925451f67
commit 88b242434b
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ describe "cinder::scheduler" do
it "doesn't run logging recipe" do
chef_run = ::ChefSpec::ChefRunner.new ::UBUNTU_OPTS
chef_run.converge "cinder::api"
chef_run.converge "cinder::scheduler"
expect(chef_run).not_to include_recipe "openstack-common::logging"
end

View File

@ -14,7 +14,7 @@ describe "cinder::volume" do
it "doesn't run logging recipe" do
chef_run = ::ChefSpec::ChefRunner.new ::UBUNTU_OPTS
chef_run.converge "cinder::api"
chef_run.converge "cinder::volume"
expect(chef_run).not_to include_recipe "openstack-common::logging"
end