diff --git a/manifests/init.pp b/manifests/init.pp index 8e1dc71a..5e132593 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -657,7 +657,7 @@ the future release. Please use tempest::package_ensure instead.") tag => ['openstack', 'tempest-package'], } if $neutron_bgpvpn_available and $::tempest::params::python_bgpvpn_tests { - package { 'python-networking-bgpvpn-tests': + package { 'python-networking-bgpvpn-tests-tempest': ensure => present, name => $::tempest::params::python_bgpvpn_tests, tag => ['openstack', 'tempest-package'], diff --git a/manifests/params.pp b/manifests/params.pp index 8bc796c1..a7c53d44 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -13,7 +13,7 @@ class tempest::params { 'gcc' ] $python_aodh_tests = 'python-aodh-tests' - $python_bgpvpn_tests = 'python-networking-bgpvpn-tests' + $python_bgpvpn_tests = 'python-networking-bgpvpn-tests-tempest' $python_ceilometer_tests = 'python-ceilometer-tests' $python_cinder_tests = 'python-cinder-tests' $python_designate_tests = 'python-designate-tests-tempest' diff --git a/spec/classes/tempest_init_spec.rb b/spec/classes/tempest_init_spec.rb index 4e30eaa4..ac773bd0 100644 --- a/spec/classes/tempest_init_spec.rb +++ b/spec/classes/tempest_init_spec.rb @@ -406,7 +406,7 @@ describe 'tempest' do it { expect { is_expected.to contain_package('python-neutron-fwaas-tests') } } it { expect { is_expected.to contain_package('python-neutron-lbaas-tests') } } it { expect { is_expected.to contain_package('python-neutron-vpnaas-tests') } } - it { expect { is_expected.to contain_package('python-networking-bgpvpn-tests') } } + it { expect { is_expected.to contain_package('python-networking-bgpvpn-tests-tempest') } } it { expect { is_expected.to contain_package('python-networking-l2gw-tests-tempest') } } it { expect { is_expected.to contain_package('python-horizon-tests-tempest') } } end