Skip to content

Commit

Permalink
test: fix new version require secret_key parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
teluq-pbrideau committed Dec 6, 2023
1 parent 23cceed commit 2b56407
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions spec/classes/apache/vhost_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@
context "with python_versions #{python_version}" do
let(:pre_condition) do
[
"class { 'puppetboard': python_version => \"#{python_version}\", }"
"class { 'puppetboard':
python_version => \"#{python_version}\",
secret_key => 'this_should_be_a_long_secret_string',
}"
]
end

Expand All @@ -73,8 +76,9 @@
let(:pre_condition) do
[
"class { 'puppetboard':
python_version => '3.7',
}
python_version => '3.7',
secret_key => 'this_should_be_a_long_secret_string',
}
"
]
end
Expand Down

0 comments on commit 2b56407

Please sign in to comment.