Skip to content

Commit c622482

Browse files
committed
acceptance/default_parameters_jira_10_spec: drop unneeded logic
Since the module only supports non-EOL OSes as of #454 and #452, we don't need the on_supported_os logic in this test anymore.
1 parent 68331db commit c622482

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

spec/acceptance/default_parameters_jira_10_spec.rb

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
require 'spec_helper_acceptance'
44

5-
def on_supported_os
6-
family = fact('os.family')
7-
major = fact('os.release.major')
8-
family == 'Debian' and (major >= '22.04' or (major >= '11' and major <= '20'))
9-
end
10-
115
prepare = <<-EOS
126
# package {'diffutils':
137
# ensure => installed
@@ -127,7 +121,7 @@ class { 'jira':
127121
EOS
128122
pp_remove = pre + pp_remove
129123

130-
context 'jira 10 only on RedHat >=8 and Debian-11', if: on_supported_os do
124+
context 'jira 10' do
131125
describe 'jira 10 postgresql' do
132126
it 'installs jira 10 with defaults' do
133127
apply_manifest(prepare, catch_failures: true)

0 commit comments

Comments
 (0)