Update name of tempest revision parameter.

* version_to_test => tempest_repo_revision, for clarity.

Change-Id: I80523050d069fbf7465fe24ebc096b98917228c3
This commit is contained in:
Maru Newby
2013-07-31 03:43:07 +00:00
parent be831efd44
commit e1e8c09d97
2 changed files with 4 additions and 4 deletions

View File

@@ -68,10 +68,10 @@ class openstack::provision(
$configure_tempest = false,
$identity_uri = undef,
$tempest_repo_uri = 'git://github.com/openstack/tempest.git',
$tempest_repo_revision = undef,
$tempest_clone_path = '/var/lib/tempest',
$tempest_clone_owner = 'root',
$setup_venv = false,
$version_to_test = 'master',
$resize_available = undef,
$change_password_available = undef
) {
@@ -162,7 +162,7 @@ class openstack::provision(
tempest_clone_path => $tempest_clone_path,
tempest_clone_owner => $tempest_clone_owner,
setup_venv => $setup_venv,
version_to_test => $version_to_test,
tempest_repo_revision => $tempest_repo_revision,
image_name => $image_name,
image_name_alt => $image_name,
image_ssh_user => $image_ssh_user,

View File

@@ -14,14 +14,14 @@ describe 'openstack::provision' do
:configure_tempest => true,
:resize_available => true,
:change_password_available => true,
:version_to_test => 'stable/grizzly'
:tempest_repo_revision => 'stable/grizzly'
}
end
it { should contain_class('tempest').with(
:resize_available => true,
:change_password_available => true,
:version_to_test => 'stable/grizzly'
:tempest_repo_revision => 'stable/grizzly'
) }
end